Skip to content

Commit a656150

Browse files
Smart Text Decorator v0.1.3
1 parent a88e6e0 commit a656150

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

.github/workflows/publish.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Publish Python Package
2+
3+
on:
4+
release:
5+
types: [published]
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Set up Python
13+
uses: actions/setup-python@v4
14+
with:
15+
python-version: "3.x"
16+
17+
- name: Install dependencies
18+
run: pip install build twine
19+
20+
- name: Build package
21+
run: python -m build
22+
23+
- name: Upload to PyPI
24+
run: twine upload dist/* --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Smart Text Decorator <sup>v0.1.2</sup>
1+
# Smart Text Decorator <sup>v0.1.3</sup>
22
Smart text decorator.
33
A library for decorating strings and displaying them beautifully in the console.
44

@@ -29,7 +29,7 @@ Author and developer: ___A.A. Suvorov___
2929

3030
## What's new:
3131

32-
__smarttextdecorator__ v0.1.2
32+
__smarttextdecorator__ v0.1.3
3333

3434
> WARNING! Not backward compatible with older versions.
3535

smarttextdecorator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
1818
"""
1919
from .decorators import SmartPrinter, FramedTextDecorator, CenteredTextDecorator
20-
__version__ = '0.1.2'
20+
__version__ = '0.1.3'
2121
__author__ = 'A.A. Suvorov'

0 commit comments

Comments
 (0)