Skip to content

Commit d52e88d

Browse files
feat: add Pumas 2.8.1 to available products
Update registry artifact, CI matrix, test versions, and REPL docstring examples for the new release.
1 parent b7bdc4a commit d52e88d

4 files changed

Lines changed: 11 additions & 10 deletions

File tree

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- windows-latest
4242
- macOS-latest
4343
product:
44-
- "Pumas@2.8.0"
44+
- "Pumas@2.8.1"
4545
- "DeepPumas@0.9.0"
4646

4747
steps:

Artifacts.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[PumasProductRegistry]
2-
git-tree-sha1 = "0ae3d5319e65563cee0f89e0afb334ada7e22973"
2+
git-tree-sha1 = "92f486284abb533e17ede2cbb9803c38b1dd628d"
33

44
[[PumasProductRegistry.download]]
5-
sha256 = "0f60e745f60c3f9280dab80f14ae2e4e60bd245237e58f693fa3f6fbe4be7a7b"
6-
url = "https://pumas-product-bundles.s3.us-east-1.amazonaws.com/bundle-7deaa857cfacdee61d85d809a6f75384a611f0ea/PumasProductRegistry.tar.gz"
5+
sha256 = "ac9f26ea73d0d2f19702f610cf61fd9ec33cda05f7f63cd0d03c3ce04f7d15dc"
6+
url = "https://pumas-product-bundles.s3.us-east-1.amazonaws.com/bundle-fdfbfadc3674996b94221e135db36f84b2b5fe58/PumasProductRegistry.tar.gz"

src/PkgREPL.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,26 +62,26 @@ function _define_specs()
6262
custom `juliaup` channel that is added, for example:
6363
6464
```
65-
pkg> pumas init Pumas@2.8.0
65+
pkg> pumas init Pumas@2.8.1
6666
6767
[...]
6868
6969
julia> exit()
7070
71-
$ julia +Pumas@2.8.0
71+
$ julia +Pumas@2.8.1
7272
```
7373
7474
If you specified a `path` when initializing then use
7575
7676
```
77-
$ julia +Pumas@2.8.0 --project=.
77+
$ julia +Pumas@2.8.1 --project=.
7878
```
7979
8080
Should you want to set this custom channel as the default then
8181
you can use the `juliaup default` command to do this:
8282
8383
```
84-
$ juliaup default Pumas@2.8.0
84+
$ juliaup default Pumas@2.8.1
8585
```
8686
""",
8787
)

test/runtests.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ using Test
1313
"Pumas@2.7.0",
1414
"Pumas@2.7.1",
1515
"Pumas@2.8.0",
16+
"Pumas@2.8.1",
1617
]
1718

1819
# Filter to single product when running in CI matrix
@@ -37,7 +38,7 @@ using Test
3738
mktempdir() do dir
3839
cd(dir) do
3940
# Test initialization in directory with existing files
40-
test_version = "Pumas@2.8.0"
41+
test_version = "Pumas@2.8.1"
4142
test_dir = "test_non_empty"
4243

4344
# Create directory with existing files
@@ -80,7 +81,7 @@ using Test
8081
@testset "Error cases for existing Project/Manifest files" begin
8182
mktempdir() do dir
8283
cd(dir) do
83-
test_version = "Pumas@2.8.0"
84+
test_version = "Pumas@2.8.1"
8485

8586
@testset "Error on existing Project.toml" begin
8687
test_dir = "test_existing_project"

0 commit comments

Comments
 (0)