Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvbrdn committed Aug 9, 2024
1 parent 1fa0667 commit e4f1384
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "regexsolver"
version = "1.0.0"
version = "1.0.1"
authors = [
{ name = "RegexSolver", email = "[email protected]" }
]
Expand Down
2 changes: 1 addition & 1 deletion regexsolver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self):
self.base_url = "https://api.regexsolver.com/"
self.api_token = None
self.headers = {
'User-Agent': 'RegexSolver Python / 1.0.0',
'User-Agent': 'RegexSolver Python / 1.0.1',
'Content-Type': 'application/json'
}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="regexsolver",
version="1.0.0",
version="1.0.1",
description="RegexSolver allows you to manipulate regular expressions as sets, enabling operations such as intersection, union, and subtraction.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit e4f1384

Please sign in to comment.