Skip to content

Commit

Permalink
Release v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn committed Mar 24, 2023
1 parent 21fcead commit 3dd7cd4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ Possible log types:
- `[fix]` for any bug fixes.
- `[sec]` to invite users to upgrade in case of vulnerabilities.

### Unreleased
### v1.3.1 (2023-03-25)

- [fix] Check invalid cursor position only when auto_linebreaks enabled (#93, #109)
- [rem] Drop support for Python 3.3
- [dep] This is the last release with official Python 2 and 3.4/3.5/3.6 support

### v1.3.0 (2020-05-03)

Expand Down
4 changes: 2 additions & 2 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Release process

Signing key: 3578F667F2F3A5FA (https://keybase.io/dbrgn)
Signing key: B993FF98A90C9AB1 (https://bargen.dev/B993FF98A90C9AB1.txt)

Used variables:

export VERSION={VERSION}
export GPG=3578F667F2F3A5FA
export GPG=B993FF98A90C9AB1

Update version numbers:

Expand Down
2 changes: 1 addition & 1 deletion RPLCD/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .contextmanagers import cursor, cleared # noqa


__version__ = '1.3.0'
__version__ = '1.3.1'


class CharLCD:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# The short X.Y version.
version = '1.3'
# The full version, including alpha/beta/rc tags.
release = '1.3.0'
release = '1.3.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
readme = open('README.rst').read()

setup(name='RPLCD',
version='1.3.0',
version='1.3.1',
description='A Raspberry Pi LCD library for the widely used Hitachi HD44780 controller.',
long_description=readme,
author='Danilo Bargen',
Expand Down

0 comments on commit 3dd7cd4

Please sign in to comment.