Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare version 1.2.0 #102

Merged
merged 4 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: adbarbaresi
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # adbarbaresi
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
8 changes: 8 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
## History / Changelog


### 1.2.0

- more compact UrlStore: use bytes instead of str for URL paths (#88)
- UrlStore maintenance: deprecate `timelimit` argument (#101)
- maintenance: simplify code (#103)
- support for Python 3.13


### 1.1.0

- replace `langcodes` by `babel` and use its information on locales (#89, #92)
Expand Down
2 changes: 1 addition & 1 deletion courlan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__author__ = "Adrien Barbaresi"
__license__ = "Apache-2.0"
__copyright__ = "Copyright 2020-2024, Adrien Barbaresi"
__version__ = "1.1.0"
__version__ = "1.2.0"


# imports
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_long_description():
"courlan/clean.py",
"courlan/core.py",
"courlan/filters.py",
"courlan/langinfo.py",
"courlan/sampling.py",
"courlan/settings.py",
"courlan/urlstore.py",
"courlan/urlutils.py",
Expand Down Expand Up @@ -79,15 +79,18 @@ def get_long_description():
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Security",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Linguistic",
"Typing :: Typed",
],
keywords=[
"cleaner",
"crawler",
"preprocessing",
"uri",
"url-parsing",
"url-manipulation",
"urls",
Expand Down
Loading