Skip to content

Commit

Permalink
miniirc v1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
luk3yx committed Oct 20, 2020
1 parent b168756 commit 2e2d603
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions miniirc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.',
Expand Down

0 comments on commit 2e2d603

Please sign in to comment.