Skip to content

Commit

Permalink
Version bump to v.2.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Bock <[email protected]>
  • Loading branch information
nicolasbock committed Apr 12, 2023
1 parent eb9ad46 commit 0404165
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ project(bml ${LANGUAGES}) # don't move this line as it changes PROJECT_SOURCE_DI
# The library version is versioned off the major version. If the API
# changes, the library version should be bumped.
set(PROJECT_VERSION_MAJOR "2")
set(PROJECT_VERSION_MINOR "2")
set(PROJECT_VERSION_MINOR "3")
set(PROJECT_VERSION_PATCH "0")

set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
Expand Down
37 changes: 37 additions & 0 deletions RELEASEMANAGEMENT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Release Management

When creating a new release, make sure to update the following files:

- `CMakeLists.txt`

```markdown
# The library version is versioned off the major version. If the API
# changes, the library version should be bumped.
set(PROJECT_VERSION_MAJOR "2")
set(PROJECT_VERSION_MINOR "3")
set(PROJECT_VERSION_PATCH "0")
```

- `docs/source/conf.py`

```python
# The full version, including alpha/beta/rc tags
release = 'v2.3.0'
```

Create an annotated tag:

```console
git tag --annotate --sign --message='Release v2.3.0' v2.3.0
```

Or use the GitHub UI at <https://github.com/lanl/bml/releases> to create a new
release.

The changelog can be generated via

```console
git log --oneline --no-decorate --no-merges v2.2.0..v2.3.0
```

Or using the GitHub UI.
Binary file removed bml-manual.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = 'bml authors'

# The full version, including alpha/beta/rc tags
release = 'v2.2.0'
release = 'v2.3.0'


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 0404165

Please sign in to comment.