Skip to content

Commit 275fc49

Browse files
author
Dennis Gläser
authored
Merge pull request #226 from dglaeser/feature/bump-version
bump version to v0.1.1
2 parents 732c0f2 + 246f9ca commit 275fc49

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
tar -cf ${HTML_DOC_FOLDER_NAME}.tar ${HTML_DOC_FOLDER_NAME}
5555
- uses: ncipollo/release-action@v1
5656
with:
57-
artifacts: build/${HTML_DOC_FOLDER_NAME}.tar
58-
bodyFile: ${DESCRIPTION_FILE}
57+
artifacts: build/${{ env.HTML_DOC_FOLDER_NAME }}.tar
58+
bodyFile: ${{ env.DESCRIPTION_FILE }}
5959
discussionCategory: "Show and tell"
6060
name: GridFormat ${{ github.ref_name }}

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ keywords:
2929
- grid file I/O
3030
- mesh file I/O
3131
license: MIT
32-
version: 0.1.0
33-
date-released: '2023-10-11'
32+
version: 0.1.1
33+
date-released: '2023-10-12'

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ else()
99
set(GRIDFORMAT_SUBPROJECT ON)
1010
endif()
1111

12-
project(gridformat VERSION 0.1.0)
12+
project(gridformat VERSION 0.1.1)
1313
set(GRIDFORMAT_NAMESPACE "gridformat")
1414

1515
include(GNUInstallDirs)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,13 +234,13 @@ git push origin v1.2.3
234234

235235
Afterwards, a release workflow will be triggered. If this runs through successfully, a release has been created. If not, the new tag
236236
has to be deleted and the procedure has to be repeated after fixing the errors. After a successful release, the version on `main`
237-
should be increased (with a suffix `-git`). Following the above example, you may run the following commands:
237+
should be increased (without triggering an actual release). Following the above example, you may run the following commands:
238238

239239
```bash
240240
git switch main
241241
git switch --create feature/bump-version
242-
python3 util/update_versions.py -v 1.2.4-git --skip-tag # only modifies versions, no commit or tag
243-
git commit -m "bump version to v1.2.3" .
242+
python3 util/update_versions.py -v 1.2.4 --skip-tag # only modifies versions, no commit or tag
243+
git commit -m "bump version to v1.2.4" .
244244
git push origin feature/bump-version
245245
```
246246

0 commit comments

Comments
 (0)