cmdstan 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dde99b1db68e538dc01d7e6ce907cfe4ad1af6f2cf6f1a1db5cf557189663230
4
- data.tar.gz: e7ddb58b9b28caa296b65c3b15e12d9dde92f3973324094beed8a7052d49adda
3
+ metadata.gz: 03edac7c1d1118b7137ada99ea51b583bf61e1f9651baa6dd3ef63f0e6546c54
4
+ data.tar.gz: bd9a4c0ebfd815b5c9eebc8c26d0c3852f84bcbae8af9c0a8353d5812fdb92d5
5
5
  SHA512:
6
- metadata.gz: 459c6135f000ea13fe183c9a582a58af9ff55d4921b664efc9de5b9d14e914d3548cb650c3fb438d83f4ba8745172124244b60a97d43d0362b1f1dfb7691c2ad
7
- data.tar.gz: b69664ddc8bd83e74d14cf763fb5a809d305db5f83b3070885c74d3ac1565ef2db4aa47824e3e0329cb29eea01217b7d6181673ad62f4909c58d3759b06618b0
6
+ metadata.gz: 39c888055f8283a9154900b356c955befc003674b844d9c655c6071e6b52c82aea8c56bcb3c1ad352284ae28fb0d266eaf48bfd1804ce9255470ae2a63bc3e07
7
+ data.tar.gz: 98a53e8b266aca52d0397180b44f3fa48fceae785d55bc8c4da2444cc951c4bfbcd380c7159b4b5e41499c49c5d7dc66d3abd81045dda7c3a55df79305e6601f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.4.0 (2024-08-02)
2
+
3
+ - Updated CmdStan to 2.35.0
4
+ - Dropped support for Ruby < 3.1
5
+
1
6
  ## 0.3.1 (2024-02-07)
2
7
 
3
8
  - Updated CmdStan to 2.34.1
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Bayesian inference for Ruby, powered by [CmdStan](https://github.com/stan-dev/cmdstan)
4
4
 
5
- [![Build Status](https://github.com/ankane/cmdstan-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/cmdstan-ruby/actions)
5
+ [![Build Status](https://github.com/ankane/cmdstan-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/cmdstan-ruby/actions)
6
6
 
7
7
  ## Installation
8
8
 
@@ -3,7 +3,7 @@ module CmdStan
3
3
  include Utils
4
4
 
5
5
  def cmdstan_version
6
- "2.34.1"
6
+ "2.35.0"
7
7
  end
8
8
 
9
9
  def cmdstan_installed?
@@ -17,10 +17,10 @@ module CmdStan
17
17
 
18
18
  # no stanc3 binary for Mac ARM
19
19
  if RbConfig::CONFIG["host_os"] !~ /darwin/i && RbConfig::CONFIG["host_cpu"] =~ /arm|aarch64/i
20
- checksum = "04eabc41b6221176a661818852e7187407e4590ee462e608df149ff37eede859"
20
+ checksum = "87ea47f0576d581f0af7e3c1a2f9843d16a9c7b21ed94621c906f7a3183b410d"
21
21
  url = "https://github.com/stan-dev/cmdstan/releases/download/v#{version}/cmdstan-#{version}-linux-arm64.tar.gz"
22
22
  else
23
- checksum = "9a6efc817a473768cf21f1e4bb1303be7ade2e26fc971856a7f9cf0bc3355f2b"
23
+ checksum = "5bf668994e163419123d22bb7248ef1d30cbe2e7a14d50aa1c282b961f8172cd"
24
24
  url = "https://github.com/stan-dev/cmdstan/releases/download/v#{version}/cmdstan-#{version}.tar.gz"
25
25
  end
26
26
 
@@ -1,3 +1,3 @@
1
1
  module CmdStan
2
- VERSION = "0.3.1"
2
+ VERSION = "0.4.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cmdstan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-07 00:00:00.000000000 Z
11
+ date: 2024-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: csv
@@ -52,14 +52,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
52
52
  requirements:
53
53
  - - ">="
54
54
  - !ruby/object:Gem::Version
55
- version: '3'
55
+ version: '3.1'
56
56
  required_rubygems_version: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
60
  version: '0'
61
61
  requirements: []
62
- rubygems_version: 3.5.3
62
+ rubygems_version: 3.5.11
63
63
  signing_key:
64
64
  specification_version: 4
65
65
  summary: Bayesian inference for Ruby, powered by CmdStan