Skip to content

Commit 509b71c

Browse files
zoola969Alexandr Dmitriev
andauthored
Version 1.0 (#7)
* Version 1.0 * publish to pypi --------- Co-authored-by: Alexandr Dmitriev <alexandr.dmitriev@myjet.local>
1 parent eebb3d8 commit 509b71c

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
environment:
3434
name: pypi
35-
# url: https://pypi.org/p/ttl-dict
36-
url: https://test.pypi.org/p/ttl-dict
35+
url: https://pypi.org/p/ttl-dict
3736

3837
permissions:
3938
id-token: write # IMPORTANT: mandatory for trusted publishing
@@ -47,4 +46,4 @@ jobs:
4746
- name: Publish distribution to TestPyPI
4847
uses: pypa/gh-action-pypi-publish@release/v1
4948
with:
50-
repository-url: https://test.pypi.org/legacy/
49+
repository-url: https://pypi.org/legacy/

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changelog
22

3-
## 1.0.0
3+
## 1.0
44

55
- Added TTLDict class

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
[![Documentation Status](https://readthedocs.org/projects/python-ttl-dict/badge/?version=latest)](https://python-ttl-dict.readthedocs.io/en/latest/?badge=latest)
44
[![license](https://img.shields.io/github/license/zoola969/python_ttl_dict.svg)](https://github.com/zoola969/python_ttl_dict/blob/main/LICENSE)
55
![tests](https://github.com/zoola969/python_ttl_dict/actions/workflows/tests.yml/badge.svg?branch=master)
6-
7-
6+
![Pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)
7+
![Mypy](https://img.shields.io/badge/mypy-checked-blue)
88
### Installation
99

1010
Installation is available using `pip install python_ttl_dict`.

ttl_dict/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from ._exceptions import TTLDictError, TTLDictInvalidConfigError
22
from ._ttl_dict import TTLDict
33

4-
__version__ = "0.1.0a1"
4+
__version__ = "1.0"
55

66
__all__ = [
77
"TTLDict",

0 commit comments

Comments
 (0)