diff --git a/CHANGELOG.md b/CHANGELOG.md index ede3944..4c5efe9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,31 @@ # Change Log -## [0.1.1](https://github.com/waartaa/ircb/tree/0.1.1) (2015-12-21) +## [0.2]https://github.com/waartaa/ircb/tree/0.2) (2016-05-29) + +[0.2](https://github.com/waartaa/ircb/compare/0.1.1...0.2) + +**Closed issues:** + +- asyncio sqlalchemy compatability? [\#50](https://github.com/waartaa/ircb/issues/50) +- not able to connect python to mysql [\#46](https://github.com/waartaa/ircb/issues/46) +- /.meteor/meteor' is not executable. [\#45](https://github.com/waartaa/ircb/issues/45) +- python.h directory is not there [\#44](https://github.com/waartaa/ircb/issues/44) +- Add a logging framework [\#43](https://github.com/waartaa/ircb/issues/43) +- Replace in memory dispatcher with one based on zeromq [\#30](https://github.com/waartaa/ircb/issues/30) + +**Merged pull requests:** + +- Implement logging, unified import layout [\#59](https://github.com/waartaa/ircb/pull/59) ([sayanchowdhury](https://github.com/sayanchowdhury)) +- Minor typo fix and update requirements.txt [\#58](https://github.com/waartaa/ircb/pull/58) ([sayanchowdhury](https://github.com/sayanchowdhury)) +- Load ircb data from file [\#57](https://github.com/waartaa/ircb/pull/57) ([slick666](https://github.com/slick666)) +- Add default value to Network.status [\#55](https://github.com/waartaa/ircb/pull/55) ([sayanchowdhury](https://github.com/sayanchowdhury)) +- Proposed Tox and TravisCI for CI/CD [\#54](https://github.com/waartaa/ircb/pull/54) ([slick666](https://github.com/slick666)) +- Changed update method to have immutable arguments. [\#53](https://github.com/waartaa/ircb/pull/53) ([slick666](https://github.com/slick666)) +- Implement basic API server for ircb [\#51](https://github.com/waartaa/ircb/pull/51) ([rtnpro](https://github.com/rtnpro)) +- Server side flux for ircb [\#48](https://github.com/waartaa/ircb/pull/48) ([rtnpro](https://github.com/rtnpro)) +- Zmq dispatcher. Fixes \#30 [\#41](https://github.com/waartaa/ircb/pull/41) ([rtnpro](https://github.com/rtnpro)) + +## [0.1.1](https://github.com/waartaa/ircb/tree/0.1.1) (2016-01-01) [Full Changelog](https://github.com/waartaa/ircb/compare/0.1...0.1.1) **Fixed bugs:** @@ -17,6 +42,7 @@ ## [0.1](https://github.com/waartaa/ircb/tree/0.1) (2015-12-20) **Implemented enhancements:** +- Load ircb data from file [\#25](https://github.com/waartaa/ircb/issues/25) - Autjoin previously joined channels when connected to IRC server [\#27](https://github.com/waartaa/ircb/issues/27) - Add support for ssl, ssl\_verify fields in "ircb networks create" command [\#22](https://github.com/waartaa/ircb/issues/22) - Connect to IRC server using SSL [\#18](https://github.com/waartaa/ircb/issues/18) @@ -37,7 +63,7 @@ **Merged pull requests:** -- Autojoin previously joined channels when connecting to IRC server. [\#28](https://github.com/waartaa/ircb/pull/28) ([rtnpro](https://github.com/rtnpro)) +- Autjoin previously joined channels when connecting to IRC server. [\#28](https://github.com/waartaa/ircb/pull/28) ([rtnpro](https://github.com/rtnpro)) - Implemented: Add support for ssl, ssl\_verify fields in 'ircb networks create' command. issue \#22 [\#24](https://github.com/waartaa/ircb/pull/24) ([PolBaladas](https://github.com/PolBaladas)) - Fixed issue \#20 'ircb network create does not work' [\#21](https://github.com/waartaa/ircb/pull/21) ([PolBaladas](https://github.com/PolBaladas)) - Allow connecting to IRC server using SSL. Fixes \#18 [\#19](https://github.com/waartaa/ircb/pull/19) ([rtnpro](https://github.com/rtnpro)) diff --git a/setup.py b/setup.py index c626134..6b2f358 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='ircb', - version='0.1', + version='0.2', description='A IRC bouncer', long_description=''.join(open('README.md').readlines()), keywords='irc, client, bouncer',