Skip to content

Commit

Permalink
Bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ixje authored Oct 11, 2021
1 parent fca532f commit 865d2d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/python/python-bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ py::int_ to_py_int(const BigInteger& value, bool is_signed = true, bool is_bigen
return py::reinterpret_steal<py::int_>(obj);
}

static constexpr auto VERSION_BINDINGS = "1.2.4";
static constexpr auto VERSION_BINDINGS = "1.2.5";

PYBIND11_MODULE(pybiginteger, m) {
m.doc() = "A C++ port of the C# BigInteger class";
Expand Down Expand Up @@ -331,4 +331,4 @@ PYBIND11_MODULE(pybiginteger, m) {
.def_static("log10", [](py::int_& value) { return BigInteger::log10(to_biginteger(value)); }, py::arg("value"))
.def("get_bit_Length", &BigInteger::get_bit_length)
.def_property_readonly("sign", &BigInteger::sign);
}
}

0 comments on commit 865d2d7

Please sign in to comment.