From d12be2caac4808036f7dc90a338db8b5f0908c77 Mon Sep 17 00:00:00 2001 From: Matthias Gatto Date: Mon, 19 Dec 2022 14:01:52 +0100 Subject: [PATCH] release Signed-off-by: Matthias Gatto --- .github/workflows/make_release_bins.yml | 2 +- README.md | 1 + osc_tui/main.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/make_release_bins.yml b/.github/workflows/make_release_bins.yml index 60e3be3..b5d7090 100644 --- a/.github/workflows/make_release_bins.yml +++ b/.github/workflows/make_release_bins.yml @@ -27,7 +27,7 @@ jobs: - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.TOKEN }}" - automatic_release_tag: "v22.09.0" + automatic_release_tag: "v22.12.0" prerelease: false title: "Fix Release" files: | diff --git a/README.md b/README.md index a09f369..366fa62 100644 --- a/README.md +++ b/README.md @@ -84,5 +84,6 @@ if a major security issue happen, we'll backport the patch and create an update ## when release a new version: * update VERSION in osc_tui/main.py and setup.py +* update automatic_release_tag in .github/workflows/make_release_bins.yml (note having to do this is a bug and could be simplify) * VERSION format is time base, 2 first numbers are for years, 2 next one are for month, and 2 last are for revisions * push a tag at the current version, a runner should build the appimage. diff --git a/osc_tui/main.py b/osc_tui/main.py index c46992c..6f88672 100644 --- a/osc_tui/main.py +++ b/osc_tui/main.py @@ -30,7 +30,7 @@ # Because it's cool but also a DDOS attack :) # So let's be cool with the API --> No auto refresh! POLL_ENABLED = False -VERSION = 220900 +VERSION = 221200 # GLOBALS METHODS CURRENT_GRID=None diff --git a/setup.py b/setup.py index 5c2393d..dbd8e21 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='osc-tui', - version="22.9.0", + version="22.12.0", packages=find_packages(), author='Outscale SAS', author_email='opensource@outscale.com',