Skip to content

Commit

Permalink
update version to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
emcek committed Dec 26, 2021
1 parent 7071967 commit ac8903a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![image](https://img.shields.io/badge/pypi-v1.5.1-blue.svg)](https://pypi.org/project/dcspy/)
[![image](https://img.shields.io/badge/pypi-v1.6.0-blue.svg)](https://pypi.org/project/dcspy/)
[![Python CI](https://github.com/emcek/dcspy/actions/workflows/python-ci.yml/badge.svg?branch=master)](https://github.com/emcek/dcspy/actions/workflows/python-ci.yml)
[![Coverage Status](https://coveralls.io/repos/github/emcek/dcspy/badge.svg?branch=master)](https://coveralls.io/github/emcek/dcspy?branch=master)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/5270a4fc2ba24261a3bfa7361150e8ff)](https://www.codacy.com/manual/mplichta/dcspy?utm_source=github.com&utm_medium=referral&utm_content=emcek/dcspy&utm_campaign=Badge_Grade)
Expand Down Expand Up @@ -66,7 +66,7 @@ pip install dcspy
```
or download manually wheel file from [releases](https://github.com/emcek/dcspy/releases/latest):
```shell script
pip install dcspy-1.5.1-py3-none-any.whl
pip install dcspy-1.6.0-py3-none-any.whl
```
## Upgrade
To upgrade DCSpy to the latest version, open Command Prompt and type:
Expand Down
2 changes: 1 addition & 1 deletion dcspy/dcspy.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from dcspy.tk_gui import DcspyGui

LOG = getLogger(__name__)
__version__ = '1.5.1'
__version__ = '1.6.0'


def run():
Expand Down
2 changes: 1 addition & 1 deletion dcspy/starter.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

LOG = getLogger(__name__)
LOOP_FLAG = True
__version__ = '1.5.1'
__version__ = '1.6.0'


def _handle_connection(lcd: LogitechKeyboard, parser: ProtocolParser, sock: socket.socket, event: Event) -> None:
Expand Down
2 changes: 1 addition & 1 deletion punch_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
MAJOR, MINOR, PATCH = [int(i) for i in '1.5.1'.split('.')]
MAJOR, MINOR, PATCH = [int(i) for i in '1.6.0'.split('.')]
PRERELEASE = ''
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from setuptools import setup, find_packages

__version__ = '1.5.1'
__version__ = '1.6.0'
here = abspath(dirname(__file__))

with io.open(join(here, 'README.md'), encoding='utf-8') as f:
Expand Down

0 comments on commit ac8903a

Please sign in to comment.