Skip to content

Commit 93307b9

Browse files
committed
bump major version to stable
1 parent a9d11f5 commit 93307b9

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
:license: MIT, see LICENSE for more details.
2323
"""
2424

25-
__version__ = '0.8.1'
25+
__version__ = '1.0.0'
2626
__author__ = 'Zeke Gabrielse'
2727
__credits__ = 'https://github.com/denisbrodbeck/machineid'
2828

0 commit comments

Comments
 (0)