Skip to content

Commit 5163648

Browse files
committed
Release v1.1.0: Fix GitHub Actions workflow and improve release process
### πŸ› Fixed - GitHub Actions workflow trigger timing issue for PyPI publishing - Release process to ensure proper workflow execution ### πŸ”§ Improved - Added manual workflow dispatch for flexible CI/CD - Synchronized version numbers across all config files ### πŸ“š Documentation - Updated CHANGELOG.md with comprehensive v1.1.0 changes - Version alignment across pyproject.toml, setup.py, and __init__.py
1 parent f9c7ba3 commit 5163648

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,20 @@ All notable changes to the sentibank project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [1.0.0] - 2024-01-XX
8+
## [1.1.0] - 2024-08-28
9+
10+
### πŸ› Fixed
11+
- **GitHub Actions Workflow**: Fixed PyPI publishing workflow trigger timing issue
12+
- **Release Process**: Ensured proper workflow execution on release publication
13+
14+
### πŸ”§ Improved
15+
- **CI/CD Pipeline**: Added manual workflow dispatch option for flexible publishing
16+
- **Release Management**: Streamlined version management across all configuration files
17+
18+
### πŸ“š Documentation
19+
- **Version Alignment**: Synchronized version numbers across pyproject.toml, setup.py, and __init__.py
20+
21+
## [1.0.0] - 2024-08-27
922

1023
### ✨ Added
1124
- **Major Refactoring**: Complete overhaul of the codebase for improved maintainability

β€Žpyproject.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sentibank"
7-
version = "1.0.0"
7+
version = "1.1.0"
88
description = "Unifying sentiment lexicons and dictionaries into an accessible open python package"
99
readme = "README.md"
1010
requires-python = ">=3.8"

β€Žsentibank/__init__.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.0'
1+
__version__ = '1.1.0'

β€Žsetup.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
name='sentibank',
55
packages=['sentibank'],
66
package_data={'sentibank': ['dict_arXiv/*.csv', 'dict_arXiv/*.pickle', 'dict_arXiv/*.json']},
7-
version='1.0.0',
7+
version='1.1.0',
88
license='CC BY-NC-SA 4.0',
99
description='Unifying sentiment lexicons and dictionaries into an accessible open python package',
1010
author='Nick Oh',

0 commit comments

Comments
Β (0)