Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down