Skip to content

Commit

Permalink
Release 2.0.0: updating version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 3, 2023
1 parent 74c5376 commit 9abee0b
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion R/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: bridgestan
Title: BridgeStan, Accessing Stan Model Functions in R
Version: 1.0.2
Version: 2.0.0
Authors@R:
person(given="Brian", family="Ward", , "[email protected]", role = c("aut", "cre"))
License: BSD_3_clause
Expand Down
5 changes: 5 additions & 0 deletions docs/_static/switcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"version": "latest",
"url": "https://roualdes.github.io/bridgestan/latest/"
},
{
"name": "v2.0.0",
"version": "v2.0.0",
"url": "https://roualdes.github.io/bridgestan/v2.0.0/"
},
{
"name": "v1.0.2",
"version": "v1.0.2",
Expand Down
6 changes: 3 additions & 3 deletions julia/Artifacts.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bridgestan]
git-tree-sha1 = "5ce59cd59421792d11a99318763ac61945e2959b"
git-tree-sha1 = "247b321809bb1a1ddd011f69648ae729ba8282c4"
lazy = true

[[bridgestan.download]]
sha256 = "4174512b41884f8e1eac7da7dfc3c49e72a8d1ba66d955b5037f1190c71443d0"
url = "https://github.com/roualdes/bridgestan/releases/download/v1.0.2/bridgestan-1.0.2.tar.gz"
sha256 = "8bd57926e2afb694d2d246a08efb1ab6b56027adcdbeb6ab0407ed58aba88778"
url = "https://github.com/roualdes/bridgestan/releases/download/v2.0.0/bridgestan-2.0.0.tar.gz"
2 changes: 1 addition & 1 deletion julia/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "BridgeStan"
uuid = "c88b6f0a-829e-4b0b-94b7-f06ab5908f5a"
authors = ["Brian Ward <[email protected]>", "Bob Carpenter <[email protected]", "Edward Roualdes <[email protected]>"]
version = "1.0.2"
version = "2.0.0"

[deps]
LazyArtifacts = "4af54fe1-eca0-43a8-85a7-787d91b784e3"
Expand Down
2 changes: 1 addition & 1 deletion python/bridgestan/__version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.0.2"
__version__ = "2.0.0"
__version_info__ = tuple(map(int, __version__.split(".")))
4 changes: 2 additions & 2 deletions src/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
#define BRIDGESTAN_STRING(s) BRIDGESTAN_STRING_EXPAND(s)
#endif

#define BRIDGESTAN_MAJOR 1
#define BRIDGESTAN_MAJOR 2
#define BRIDGESTAN_MINOR 0
#define BRIDGESTAN_PATCH 2
#define BRIDGESTAN_PATCH 0

namespace bridgestan {

Expand Down

2 comments on commit 9abee0b

@github-actions
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register subdir=julia

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/82819

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a julia-v2.0.0 -m "<description of version>" 9abee0b681e570dd66716b25bf49ceaa3a484e43
git push origin julia-v2.0.0

Please sign in to comment.