aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md7
-rw-r--r--python/SyncRNG/__version__.py2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..a76db02
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,7 @@
+# Change log
+
+
+## Version 1.3.1
+
+* [Python] Change the way the RNG state is converted between Python and C.
+ This is now done in exactly the same way as in the R package.
diff --git a/python/SyncRNG/__version__.py b/python/SyncRNG/__version__.py
index 5518cde..afe411b 100644
--- a/python/SyncRNG/__version__.py
+++ b/python/SyncRNG/__version__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-VERSION = (1, 3, 0)
+VERSION = (1, 3, 1)
__version__ = ".".join(map(str, VERSION))