Skip to content

Commit

Permalink
Release 2.4.1: updating version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 17, 2024
1 parent 6f8a516 commit 9c68e3f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 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.0
Version: 2.4.1
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.4.1",
"version": "v2.4.1",
"url": "https://roualdes.github.io/bridgestan/v2.4.1/"
},
{
"name": "v2.4.0",
"version": "v2.4.0",
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.0"
version = "2.4.1"

[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.0"
__version__ = "2.4.1"

__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.0"
version = "2.4.1"
edition = "2021"
rust-version = "1.69"
description = "Rust interface for BridgeStan"
Expand Down
2 changes: 1 addition & 1 deletion src/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

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

namespace bridgestan {

Expand Down

2 comments on commit 9c68e3f

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

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.4.1 -m "<description of version>" 9c68e3fe89dbf3dc99cb8dd4aa7c7dbd00559dad
git push origin julia-v2.4.1

Please sign in to comment.