Skip to content

Commit

Permalink
Release v0.8.3 and support Python 3.13 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
my8100 authored Jan 1, 2025
1 parent 82a402d commit da2eace
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
10 changes: 10 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
Release History
===============
[0.8.3](https://github.com/my8100/logparser/issues?q=is%3Aclosed+milestone%3A0.8.3) (2025-01-01)
------------------
- New Features
- Support telnet for Python 3.13 [(PR #29)](https://github.com/my8100/logparser/issues/29)
- Bug Fixes
- Fix log parsing issues and update tests [(issue #26)](https://github.com/my8100/logparser/issues/26)
- Others
- Fix CircleCI config on Python image [(PR #27)](https://github.com/my8100/logparser/issues/27)


[0.8.2](https://github.com/my8100/logparser/issues?q=is%3Aclosed+milestone%3A0.8.2) (2019-08-04)
------------------
- New Features
Expand Down
2 changes: 1 addition & 1 deletion logparser/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding: utf-8

__title__ = 'logparser'
__version__ = '0.8.2'
__version__ = '0.8.3'
__author__ = 'my8100'
__author_email__ = '[email protected]'
__url__ = 'https://github.com/my8100/logparser'
Expand Down
2 changes: 1 addition & 1 deletion logparser/telnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import telnetlib
except ImportError:
telnetlib = None

import traceback

import pexpect
Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
)

0 comments on commit da2eace

Please sign in to comment.