Skip to content

Commit f6d01c9

Browse files
committed
Increase version
1 parent 1fe164b commit f6d01c9

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 1.1.1 ( Dec 22, 2021 )
2+
3+
- Server
4+
- Use [Argon2](https://en.wikipedia.org/wiki/Argon2) instead of SHA-256 for authentication process
5+
- Common Weakness Enumeration: [CWE-327](https://cwe.mitre.org/data/definitions/327.html).
6+
- Common Weakness Enumeration: [CWE-328](https://cwe.mitre.org/data/definitions/328.html).
7+
- Common Weakness Enumeration: [CWE-916](https://cwe.mitre.org/data/definitions/916.html).
8+
- Admin
9+
- Fix logout problem
10+
- Client
11+
- Fix style problems for some CMS platforms
12+
113
# 1.1.0 ( Sep 1, 2020 )
214

315
- Server

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
setup(
2222
name='nikas',
23-
version='1.1.0',
23+
version='1.1.1',
2424
author='Arash Hatami',
2525
author_email='[email protected]',
2626
packages=find_packages(),
@@ -43,7 +43,7 @@
4343
"Programming Language :: Python :: 3.8"
4444
],
4545
install_requires=requires,
46-
setup_requires=["cffi>=1.3.0"],
46+
setup_requires=["cffi>=1.3.0", "argon2-cffi>=21.3.0"],
4747
entry_points={
4848
'console_scripts':
4949
['nikas = nikas:main'],

version.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0
1+
1.1.1

0 commit comments

Comments
 (0)