Skip to content

Commit e4f1384

Browse files
author
Alexandre van Beurden
committed
update version
1 parent 1fa0667 commit e4f1384

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "regexsolver"
7-
version = "1.0.0"
7+
version = "1.0.1"
88
authors = [
99
{ name = "RegexSolver", email = "contact@regexsolver.com" }
1010
]

regexsolver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self):
2828
self.base_url = "https://api.regexsolver.com/"
2929
self.api_token = None
3030
self.headers = {
31-
'User-Agent': 'RegexSolver Python / 1.0.0',
31+
'User-Agent': 'RegexSolver Python / 1.0.1',
3232
'Content-Type': 'application/json'
3333
}
3434

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="regexsolver",
5-
version="1.0.0",
5+
version="1.0.1",
66
description="RegexSolver allows you to manipulate regular expressions as sets, enabling operations such as intersection, union, and subtraction.",
77
long_description=open('README.md').read(),
88
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)