We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9d11f5 commit 93307b9Copy full SHA for 93307b9
CHANGELOG.md
@@ -0,0 +1,8 @@
1
+# Changelog
2
+
3
+## v1.0.0
4
5
+- Fix order of operations of HMAC function in `hashed_id()`. Previously, the
6
+ function computed `HMAC(app_id, device_id)`. It now matches the Go [machineid](https://github.com/keygen-sh/machineid)
7
+ package, computing `HMAC(device_id, app_id)`. This is a breaking change for
8
+ all previously generated hashed IDs, so update accordingly.
machineid/__init__.py
@@ -22,7 +22,7 @@
22
:license: MIT, see LICENSE for more details.
23
"""
24
25
-__version__ = '0.8.1'
+__version__ = '1.0.0'
26
__author__ = 'Zeke Gabrielse'
27
__credits__ = 'https://github.com/denisbrodbeck/machineid'
28
0 commit comments