Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: un33k/python-slugify
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.1.1
Choose a base ref
...
head repository: un33k/python-slugify
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.1.2
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Apr 27, 2022

  1. Add cmdLine option

    un33k committed Apr 27, 2022
    Copy the full SHA
    3f1a0fe View commit details
Showing with 8 additions and 3 deletions.
  1. +4 −0 CHANGELOG.md
  2. +1 −1 dev.requirements.txt
  3. +2 −1 setup.py
  4. +1 −1 slugify/__version__.py
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.1.2

- Reintroduce the cli options

## 6.1.1

- Remove type hinting (temporarily)
2 changes: 1 addition & 1 deletion dev.requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pycodestyle==2.7.0
pycodestyle==2.8.0
twine==3.4.1
flake8==4.0.1
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -80,5 +80,6 @@ def status(s):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
],
entry_points={'console_scripts': ['slugify=slugify.__main__:main']},
)
2 changes: 1 addition & 1 deletion slugify/__version__.py
Original file line number Diff line number Diff line change
@@ -5,4 +5,4 @@
__url__ = 'https://github.com/un33k/python-slugify'
__license__ = 'MIT'
__copyright__ = 'Copyright 2022 Val Neekman @ Neekware Inc.'
__version__ = '6.1.1'
__version__ = '6.1.2'