From 2e2d60311c31590b16cca0ed789dde6e8079bd73 Mon Sep 17 00:00:00 2001 From: luk3yx Date: Tue, 20 Oct 2020 18:17:07 +1300 Subject: [PATCH] miniirc v1.6.3 --- CHANGELOG.md | 10 ++++++++++ README.md | 3 +-- miniirc.py | 6 +++--- setup.py | 2 +- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e18fd68..936755d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ Notes: - This changelog may contain typographical errors, it is still a work-in-progress. +## 1.6.3 - 2020-10-20 + +### Added + + - Unit tests. + +### Changed + + - Fix 432 (ERR_NICKNAMENUSE) handling. + ## 1.6.2 - 2020-05-08 ### Changed diff --git a/README.md b/README.md index 9edafd5..b08eaee 100644 --- a/README.md +++ b/README.md @@ -315,8 +315,7 @@ miniirc provides the following helper functions: The version numbering system should be similar to [SemVer](https://semver.org/), however backwards compatibility is preserved where possible when major releases -change. Patch version numbers can and will increase quickly, as miniirc is (at -the time of writing this) under active development. +change. ## Python version support diff --git a/miniirc.py b/miniirc.py index fc1b627..9e2d484 100755 --- a/miniirc.py +++ b/miniirc.py @@ -8,9 +8,9 @@ import atexit, errno, threading, time, socket, ssl, sys # The version string and tuple -ver = __version_info__ = (1,6,2) -version = 'miniirc IRC framework v1.6.2' -__version__ = '1.6.2' +ver = __version_info__ = (1,6,3) +version = 'miniirc IRC framework v1.6.3' +__version__ = '1.6.3' # __all__ and _default_caps __all__ = ['CmdHandler', 'Handler', 'IRC'] diff --git a/setup.py b/setup.py index 5852981..aa49204 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name = 'miniirc', - version = '1.6.2', + version = '1.6.3', py_modules = ['miniirc'], author = 'luk3yx', description = 'A lightweight IRC framework.',