Skip to content

Commit

Permalink
version bump to 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
noXplode committed Dec 15, 2024
1 parent d306b52 commit 081b239
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ dist/
aiogram_calendar.egg-info
MANIFEST
MANIFEST.in

build/
*.egg-info/
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,11 @@ dev:

undev:
pip uninstall -y -r requirements_dev.txt

.PHONY: build publish

build:
python -m build

publish:
python -m twine upload dist/*
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Dialog calendar - user selects year on first stage, month on next stage, day on


**From version 0.2 supports aiogram 3, use version 0.1.1 with aiogram 2.**
**From version 0.6 supports aiogram 3.7, use version 0.5 with aiogram <3.7 **


## Main features
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "aiogram_calendar"
version = "0.5.0"
version = "0.6.0"
description = "Simple Inline Calendar & Date Selection tool for Aiogram Telegram bots"
readme = "README.md"
authors = [{ name = "Andrii Nikolabai", email = "nikolabay.as@gmail.com" }]
Expand All @@ -15,17 +15,17 @@ classifiers = [
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
]
keywords = ['Aiogram', 'Telegram', 'Bots', 'Calendar']
dependencies = [
'aiogram>=3'
'aiogram>=3.7'
]
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.optional-dependencies]
dev = ["pytest", "pytest-asyncio"]
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[metadata]
description-file = README.md
description-file = README.md
license_files = LICENSE.txt

0 comments on commit 081b239

Please sign in to comment.