Skip to content

Commit

Permalink
Release 2.1.2: updating version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 20, 2023
1 parent ee650fd commit e313cd4
Show file tree
Hide file tree
Showing 7 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: 2.1.1
Version: 2.1.2
Authors@R:
person(given="Brian", family="Ward", , "bward@flatironinstitute.org", 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.1.2",
"version": "v2.1.2",
"url": "https://roualdes.github.io/bridgestan/v2.1.2/"
},
{
"name": "v2.1.1",
"version": "v2.1.1",
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 = "ac3a3214a3759f4eb652ce30f2e1b2feb6df1f00"
git-tree-sha1 = "a81a3938b39cd8994580743cd261f7458f4038f8"
lazy = true

[[bridgestan.download]]
sha256 = "6eb3526b831fc81bd4283169e38ad54bf0cf91ebc5a527862212fbd6b8fe603e"
url = "https://github.com/roualdes/bridgestan/releases/download/v2.1.1/bridgestan-2.1.1.tar.gz"
sha256 = "53123d4b04288c73eda0dbbb0035398fe050afe133c1e1a1b6867902657a2495"
url = "https://github.com/roualdes/bridgestan/releases/download/v2.1.2/bridgestan-2.1.2.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 <bward@flatironinstitute.org>", "Bob Carpenter <bcarpenter@flatironinstitute.org", "Edward Roualdes <eroualdes@csuchico.edu>"]
version = "2.1.1"
version = "2.1.2"

[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__ = "2.1.1"
__version__ = "2.1.2"
__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.1.1"
version = "2.1.2"
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 1
#define BRIDGESTAN_PATCH 1
#define BRIDGESTAN_PATCH 2

namespace bridgestan {

Expand Down

2 comments on commit e313cd4

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

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

Please sign in to comment.