numo-blis 0.5.0 → 0.5.1

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: 59c91daaa53f4e8063d8ea703df697d0f0b68cd9aef803e0dce522c56186524a
4
- data.tar.gz: 96c825b3719f59be1d034666c781741cab8399d8b05f62b21e72f763a3035e16
3
+ metadata.gz: 76231045ffb4d2fb71ce0325f44afe157de0914c4b0b7859bc09c1d82cf31e9f
4
+ data.tar.gz: d270167b6e4b8d570a5e9747e51ac2100933c762600c8a52d0a6856dc1e7dc54
5
5
  SHA512:
6
- metadata.gz: 28fc8382f0e8d9b8cca911cf09351727ddd745b55ea35c46c07c5fbd9c23b3fe0c56976a51f85e9e969cf7e855ea903e2c0a3af5453977b12b5acb57c61caa07
7
- data.tar.gz: 2a22b64227c4ba4f30bc016425d4b9297301a499833cb14acbbe09755eed603cbac9bf6e5d3a612f0793810b714cda4c80855d83867bffc7dc27db6c1619995f
6
+ metadata.gz: eb2fd8a3c41716f61ae73757ed3c2163cdbafa112aeef7fff863ecd74697b2d0f2aa949b67f4176d4c2815d5bb7b2c37a7a4216d50f674bab8dcb85b5ac2f783
7
+ data.tar.gz: f900ba7670a41d2f17d3cb1b9a689607360745bbe467ab1f89b1132217bc9ebc1a4603a6dd27852f9ed27d70bce63f910037b464d99b3874af4732aea8a7347a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.5.1] - 2025-01-03
2
+
3
+ - Fix BLIS_VERSION and LAPACK_VERSION constants.
4
+
1
5
  ## [0.5.0] - 2025-01-03
2
6
 
3
7
  - Change the version of BLIS to be downloaded to 1.0.
@@ -23,8 +23,8 @@ void Init_blisext()
23
23
  mBLIS = rb_define_module_under(mNumo, "BLIS");
24
24
 
25
25
  /* The version of BLIS used as a background library. */
26
- rb_define_const(mBLIS, "BLIS_VERSION", rb_str_new_cstr("0.9.0"));
26
+ rb_define_const(mBLIS, "BLIS_VERSION", rb_str_new_cstr("1.0"));
27
27
 
28
28
  /* The version of LAPACK used as a background library. */
29
- rb_define_const(mBLIS, "LAPACK_VERSION", rb_str_new_cstr("3.10.0"));
29
+ rb_define_const(mBLIS, "LAPACK_VERSION", rb_str_new_cstr("3.11.0"));
30
30
  }
@@ -5,6 +5,6 @@ module Numo
5
5
  # Numo::BLIS loads Numo::NArray and Linalg with BLIS used as backend library.
6
6
  module BLIS
7
7
  # The version of Numo::BLIS you install.
8
- VERSION = '0.5.0'
8
+ VERSION = '0.5.1'
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-blis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku