From 046b0f642c90cf287fd175e7c11ae842fc862b34 Mon Sep 17 00:00:00 2001 From: Bertrand Coconnier Date: Sat, 13 Jul 2024 16:02:11 +0200 Subject: [PATCH] Prepare test release v0.99.99 --- .github/workflows/codeql-analysis.yml | 4 ++-- .github/workflows/cpp-python-build.yml | 2 ++ CMakeLists.txt | 6 +++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index fb94e5528c..bc71433346 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -7,10 +7,10 @@ name: "CodeQL" on: push: - branches: [master] + branches: [master, test-release/v0.99] pull_request: # The branches below must be a subset of the branches above - branches: [master] + branches: [master, test-release/v0.99] schedule: - cron: '0 9 * * 2' diff --git a/.github/workflows/cpp-python-build.yml b/.github/workflows/cpp-python-build.yml index b3c753523d..6326c66900 100644 --- a/.github/workflows/cpp-python-build.yml +++ b/.github/workflows/cpp-python-build.yml @@ -795,6 +795,8 @@ jobs: python-version: '3.8' - name: PyPI deployment uses: pypa/gh-action-pypi-publish@release/v1 + with: + repository-url: https://test.pypi.org/legacy/ # Deploy stable release to GitHub - name: Get JSBSim version diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c5009b3a3..fcfbbc07c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,9 +5,9 @@ cmake_minimum_required (VERSION 3.15) ################################################################################ project(JSBSim) -set(PROJECT_VERSION_MAJOR "1") -set(PROJECT_VERSION_MINOR "2") -set(PROJECT_VERSION_PATCH "1") +set(PROJECT_VERSION_MAJOR "0") +set(PROJECT_VERSION_MINOR "99") +set(PROJECT_VERSION_PATCH "99") set(PROJECT_CONTACT_EMAIL "jsbsim-devel@lists.sourceforge.net") set(PROJECT_CONTACT_VENDOR "The JSBSim team")