Skip to content

Commit

Permalink
Release 2.5.0: updating version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 18, 2024
1 parent 6549ff9 commit b847514
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 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: 2.4.1
Version: 2.5.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.5.0",
"version": "v2.5.0",
"url": "https://roualdes.github.io/bridgestan/v2.5.0/"
},
{
"name": "v2.4.1",
"version": "v2.4.1",
Expand Down
2 changes: 1 addition & 1 deletion julia/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = [
"Bob Carpenter <[email protected]>",
"Edward Roualdes <[email protected]>",
]
version = "2.4.1"
version = "2.5.0"

[deps]
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
Expand Down
2 changes: 1 addition & 1 deletion python/bridgestan/__version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "2.4.1"
__version__ = "2.5.0"

__version_info__ = tuple(map(int, __version__.split(".")))
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bridgestan"
version = "2.4.1"
version = "2.5.0"
edition = "2021"
rust-version = "1.69"
description = "Rust interface for BridgeStan"
Expand Down
4 changes: 2 additions & 2 deletions src/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#endif

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

namespace bridgestan {

Expand Down

2 comments on commit b847514

@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/109290

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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.5.0 -m "<description of version>" b847514cea0706fcfefae4814942d61a2076728e
git push origin julia-v2.5.0

Please sign in to comment.