diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c341465..14bf858 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -46,7 +46,7 @@ jobs: name: artifact path: dist - - uses: pypa/gh-action-pypi-publish@master + - uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.pypi_password }} diff --git a/README.md b/README.md index f505d78..1305ac5 100644 --- a/README.md +++ b/README.md @@ -65,3 +65,9 @@ Choose a keyboard shortcut like `Command+Option+Shift U`. Now you are all set to use your new keyboard shortcut in many apps, like here in Keynote: ![keynote_demo](docs/unicodeit_demo.gif) + + +## [dev] New Release Flow + +* update version in `uncodeit/__init__.py` and `package.json` +* create a new release on Github diff --git a/package.json b/package.json index 66ada02..a689fd7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "unicodeit", - "version": "0.7.2", + "version": "0.7.4", "description": "Converts LaTeX tags to unicode.", "main": "ts_dist/js/index.js", "types": "ts_dist/js/index.d.ts", diff --git a/unicodeit/__init__.py b/unicodeit/__init__.py index b3ab315..8a64970 100644 --- a/unicodeit/__init__.py +++ b/unicodeit/__init__.py @@ -3,4 +3,4 @@ from .replace import replace __author__ = 'Sven Kreiss , Kyle Cranmer ' -__version__ = '0.7.2' +__version__ = '0.7.4'