kmat 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cace167425e49b2930199e020bc671e4fbb8f20cbb6faf3c97f729e232b07a9f
4
- data.tar.gz: cd4ae619cf84c01da0d59b90d04bed195fb322f37f56931c1829fde4f76f5073
3
+ metadata.gz: 3993bba313b3ed31ee178728129226ddcec54647570177af8bbc58ecec9a5fd2
4
+ data.tar.gz: 8f1d1af318a1459eb3aebce1231155da47d98abff4482b869d8c44bb49dba84e
5
5
  SHA512:
6
- metadata.gz: '08c71eb2ea78d460b74c493983c908c2471f698893d5cf6bf728d8592775ce05dc16396836efa86ae2e889ec8f7a635a696479f310266953b4b28834a64ae002'
7
- data.tar.gz: e2783550e7c83604daa08cd42d34f4cb9fc57ca03636f6ef58e0dce670da0b87dde585710e3bd35a65307bced6208ac463d64bea654ed9440da605c53c8d5568
6
+ metadata.gz: d622e7cb13f2813c04caf6060857c46d2852a5f27f3330733ccf83cb14d834c0daa9beca585e4202fca8918309398fe3a158139431157eadf4018dff81f54484
7
+ data.tar.gz: 1b922fbe57624261d2f0d945a8189fa042f0a09c2111b743b12231d54f273b1c48bbf040da01632a3d79ea7f09f7debd690a50f168394c2f55667662c566e9ec
data/CHANGELOG.md CHANGED
@@ -34,3 +34,6 @@ Linear algebra methods used with transposed output matricies were affected.
34
34
 
35
35
  ## 0.1.3 2026/02/19
36
36
  - Fixed a bug that there were typos in `Mat#rand_orth`
37
+
38
+ ## 0.1.4 2026/05/01
39
+ - Cumulative coding amendment.
@@ -1,4 +1,3 @@
1
-
2
1
  class MethodDefinition
3
2
  def initialize(name_arg, comment)
4
3
  comment = %r|//\s+(.*)|.match(comment)[1]
data/ext/kmat/extconf.rb CHANGED
@@ -12,7 +12,7 @@ else
12
12
  exit
13
13
  end
14
14
 
15
- $CFLAGS = "$(cflags) -std=c11"
15
+ $CFLAGS = "$(cflags) -std=c17"
16
16
  $CFLAGS += " -m64" if mkl
17
17
 
18
18
  $warnflags = "-Wall -Wextra -Wdeprecated-declarations -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wmissing-noreturn -Wno-unused-parameter -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Winit-self -Wshadow -Wlogical-op -Wconversion"
data/lib/kmat/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Mat
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kmat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - KAZOON
@@ -161,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
161
  - !ruby/object:Gem::Version
162
162
  version: '0'
163
163
  requirements: []
164
- rubygems_version: 4.0.6
164
+ rubygems_version: 4.0.11
165
165
  specification_version: 4
166
166
  summary: Kmat is a Ruby gem for matrix operations. Kmat uses BLAS/LAPACK as back-end.
167
167
  test_files: []