From cb128f97bc8fe6553668c2fc1a0c4da4d92f6b8a Mon Sep 17 00:00:00 2001 From: whitetuft Date: Tue, 23 Apr 2024 10:20:32 +0200 Subject: [PATCH] Bump version to 1.0.6 --- .github/workflows/build_docs.yml | 1 + CITATION.cff | 4 ++-- pyrtlib/version.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index 804305fa..5c7d0df7 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -4,6 +4,7 @@ name: build-docs-action on: push: branches: [ main ] + # paths: ['docs/**'] jobs: diff --git a/CITATION.cff b/CITATION.cff index cf9c304b..e657613d 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -43,6 +43,6 @@ keywords: - radiative-transfer-models - python license: GPL-3.0 -version: 1.0.5 -date-released: '2024-02-29' +version: 1.0.6 +date-released: '2024-04-23' doi: 10.5281/zenodo.8219145 diff --git a/pyrtlib/version.py b/pyrtlib/version.py index 18a60483..988e93b4 100644 --- a/pyrtlib/version.py +++ b/pyrtlib/version.py @@ -1,4 +1,4 @@ MAJOR = 1 MINOR = 0 -PATCH = 5 +PATCH = 6 __version__ = '%d.%d.%d' % (MAJOR, MINOR, PATCH) \ No newline at end of file diff --git a/setup.py b/setup.py index f7863fad..f8145f42 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def read_file(filename): setup( name='pyrtlib', - version='1.0.5', + version='1.0.6', include_package_data=True, packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), package_data={'pyrtlib': ['_lineshape/*', 'climatology/*', 'uncertainty/covariance_matrix/*/*']},