Skip to content

Commit

Permalink
Merge pull request #40 from manicmaniac/release/0.1.1
Browse files Browse the repository at this point in the history
Bump version to 0.1.1
  • Loading branch information
manicmaniac authored Jan 24, 2022
2 parents 2142514 + a721743 commit cee2c67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arc4.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ arc4_ARC4_init(struct arc4_ARC4 *self, PyObject *args, PyObject *kwargs)
args->ob_type->tp_name);
return -1;
}
#endif
#endif /* PYPY_VERSION */
if (key_size <= 0) {
PyErr_Format(PyExc_ValueError, "invalid key length: %zd", key_size);
return -1;
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from distutils.core import Extension, setup


VERSION = '0.1.0'
VERSION = '0.1.1'


def read_file(path):
Expand Down

0 comments on commit cee2c67

Please sign in to comment.