Skip to content

Commit

Permalink
Bump version to 1.2.4 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
miketeo committed Oct 6, 2020
1 parent 4e698d1 commit 1406ba4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
pysmb-1.2.4, 6 Oct 2020
=======================
- Remove dependency on pycrypto as it is no longer under active maintenance

pysmb-1.2.3, 6 Oct 2020
=======================
- Fix bug in session key generation during session negotiation (#166)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name = "pysmb",
version = "1.2.3",
version = "1.2.4",
author = "Michael Teo",
author_email = "miketeo@miketeo.net",
license = "zlib/libpng",
Expand All @@ -17,7 +17,7 @@
url = "https://miketeo.net/projects/pysmb",
package_dir = pkgdir,
packages = [ 'smb', 'smb.utils', 'nmb' ],
install_requires = [ 'pyasn1', 'pycrypto' ],
install_requires = [ 'pyasn1' ],
long_description="""pysmb is an experimental SMB/CIFS library written in Python. It implements the client-side SMB/CIFS protocol which allows your Python application to access and transfer files to/from SMB/CIFS shared folders like your Windows file sharing and Samba folders.""",
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
4 changes: 2 additions & 2 deletions sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
# built documents.
#
# The short X.Y version.
version = '1.2.1'
version = '1.2.4'
# The full version, including alpha/beta/rc tags.
release = '1.2.1'
release = '1.2.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 1406ba4

Please sign in to comment.