Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Post Release 0.2.2 #32

Merged
merged 8 commits into from
Jan 6, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/gitchangelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
python-version: 3.12

- name: Install Python Requirements
run: pip install gitchangelog pystache
run: pip install -r requirements.txt gitchangelog pystache

- name: Update Change Log
run: git pull && make changelog
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/gitflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: 3.12

- name: Install Python Requirements
run: pip install -r requirements.txt gitchangelog pystache

- name: Retrieve Release Candidate Name
id: version
run: echo "RELEASE_CANDIDATE_TAG=$( make tag )" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog


## $( python -c 'import router; print(router.__version__)' )
## 0.2.2 (2025-01-06)

### Fix

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build:
docker compose -f tests/resources/docker-compose.yaml build

changelog:
gitchangelog > CHANGELOG.md
TAG=$(TAG) gitchangelog > CHANGELOG.md

clean:
docker compose -f tests/resources/docker-compose.yaml down -t 0
Expand Down
2 changes: 1 addition & 1 deletion router.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def get_logger(logger_name: str, log_level=os.getenv('LOG_LEVEL', 'WARN')) -> lo

logging.basicConfig()
logger = get_logger(__file__)
__version__ = '0.2.1'
__version__ = '0.2.2'


class ConnectionStringHelper:
Expand Down