Skip to content

Commit

Permalink
chore: bump package version
Browse files Browse the repository at this point in the history
  • Loading branch information
pawanpaudel93 committed Jun 5, 2023
1 parent d4393fa commit 1e67426
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ All notable changes to this project will be documented in this file.
## [0.2.0] - 2022-05-07

- Updated Readme and set encoding explicitly to utf-8 while reading m3u file

## [0.2.1] - 2023-06-05

- Setup logger with package name
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# m3u_parser

![version](https://img.shields.io/badge/version-0.2.0-blue.svg?cacheSeconds=2592000)
![version](https://img.shields.io/badge/version-0.2.1-blue.svg?cacheSeconds=2592000)

A Python package for parsing m3u files and extracting streams information. The package allows you to convert the parsed information into JSON or CSV format and provides various filtering and sorting options.

Expand Down
2 changes: 1 addition & 1 deletion m3u_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .m3u_parser import M3uParser

__version__ = '0.2.0'
__version__ = '0.2.1'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
from shutil import rmtree

from setuptools import Command, find_packages, setup
from setuptools import Command, setup

# Package meta-data.
NAME = "m3u_parser"
Expand All @@ -12,7 +12,7 @@
EMAIL = "[email protected]"
AUTHOR = "Pawan Paudel"
REQUIRES_PYTHON = ">=3.0"
VERSION = "0.2.0"
VERSION = "0.2.1"

REQUIRED = ["requests", "asyncio", "aiohttp", "pycountry"]

Expand Down

0 comments on commit 1e67426

Please sign in to comment.