Compare commits

..

2 commits

Author SHA1 Message Date
ee3933dc77
Bump version: 0.99.2 → 0.99.3
All checks were successful
continuous-integration/drone/push Build is passing
2024-05-26 00:56:29 +02:00
e23664b5e7
[CI/CD] Be explicit about the origin in sync-stable-branch. 2024-05-26 00:56:01 +02:00
4 changed files with 9 additions and 5 deletions

View file

@ -4,11 +4,15 @@
. .drone/macros/configure-ssh.sh
. .drone/macros/configure-gpg.sh
# Git configuration
git remote rm origin
git remote add origin git@git.platypush.tech:platypush/platypush.git
# Merge and push to the `stable` branch
git checkout stable || git checkout -b stable
git rebase master
git rebase origin master
git push -u origin stable
git checkout master
git checkout origin master
# Restore the original git configuration
mv "$TMP_GIT_CONF" "$GIT_CONF"

View file

@ -23,7 +23,7 @@ when = hook
__author__ = 'Fabio Manganiello <fabio@manganiello.tech>'
__version__ = '0.99.2'
__version__ = '0.99.3'
__all__ = [
'Application',
'Variable',

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.99.2
current_version = 0.99.3
commit = True
tag = True

View file

@ -67,7 +67,7 @@ backend = pkg_files('platypush/backend')
setup(
name="platypush",
version="0.99.2",
version="0.99.3",
author="Fabio Manganiello",
author_email="fabio@manganiello.tech",
description="Platypush service",