From 1feb2641c341d9ee57275a5b4187a17e41158d68 Mon Sep 17 00:00:00 2001 From: daniloceano Date: Fri, 15 Aug 2025 11:55:53 -0300 Subject: [PATCH] Bump version to 0.1.2 to resolve PyPI upload conflict - Fix CI/CD pipeline issue where version 0.1.1 already exists on PyPI - Update version in setup.py, src/__init__.py, and CHANGELOG.md - This allows successful package publication to PyPI --- CHANGELOG.md | 7 ++++++- setup.py | 2 +- src/__init__.py | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80a9d38..f487877 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - +## [0.1.2] - 2025-08-15 + +### Fixed +- Resolved PyPI upload conflict by incrementing version number +- Fixed CI/CD pipeline issues with package publishing + ## [0.1.1] - 2025-08-15 ### Added diff --git a/setup.py b/setup.py index dd49622..eae2403 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def read_readme(): setup( name='atmos-bud', - version='0.1.1', + version='0.1.2', description='Program for analyzing the heat, vorticity and humidity budgets of limited regions on the atmosphere.', long_description=read_readme(), long_description_content_type='text/markdown', diff --git a/src/__init__.py b/src/__init__.py index 9e1c285..dd104b4 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -16,10 +16,10 @@ A comprehensive Python package for analyzing heat, vorticity, and humidity budgets of limited regions in the atmosphere using reanalysis data. -Version: 0.1.1 +Version: 0.1.2 """ -__version__ = "0.1.1" +__version__ = "0.1.2" __author__ = "Danilo Couto de Souza" __email__ = "danilo.oceano@gmail.com" __license__ = "GPL-3.0"