Skip to content

Commit d4845b7

Browse files
Merge pull request #39 from Geode-solutions/next
2 parents ef35bb8 + 68ca7f9 commit d4845b7

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

.github/workflows/CD.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,13 @@ jobs:
2626
if: steps.semantic-release.outputs.released == 'true'
2727
run: |
2828
python3 -m pip install twine
29-
python3 -m twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
29+
python3 -m twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
30+
- name: Merge master -> next
31+
if: github.ref == 'ref/head/master'
32+
uses: devmasx/merge-branch@master
33+
with:
34+
type: now
35+
from_branch: master
36+
target_branch: next
37+
github_token: ${{ github.token }}
38+

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33

44

5+
## v2.1.0-rc.1 (2023-11-15)
6+
7+
### Feature
8+
9+
* feat(github_workflows): merge from master to next ([`a93888c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a93888c5c87d1a9b6a64401e9eb55d1bb7015d18))
10+
11+
### Unknown
12+
13+
* Merge pull request #38 from Geode-solutions/feat_merge_master_to_next ([`a164e0f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a164e0f925d22d0d9cfe3f59f34f1fb7d9e8cf74))
14+
15+
516
## v2.0.0 (2023-11-15)
617

718
### Unknown

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "OpenGeodeWeb-Back"
8-
version = "2.0.0"
8+
version = "2.1.0-rc.1"
99
dynamic = ["dependencies"]
1010
authors = [
1111
{ name="Geode-solutions", email="[email protected]" },

0 commit comments

Comments
 (0)