diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c55910..ffeeff3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ CHANGELOG ========= +0.4.2 - 2023-12-29 +------------------ + +This change implements a new custom scalar `BigInt` that is mapped to SQLAlchemy's `BigInteger`. + +Contributed by [IdoKendo](https://github.com/IdoKendo) via [PR #101](https://github.com/strawberry-graphql/strawberry-sqlalchemy/pull/101/) + + 0.4.1 - 2023-12-27 ------------------ diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 542ac50..0000000 --- a/RELEASE.md +++ /dev/null @@ -1,3 +0,0 @@ -Release type: patch - -This change implements a new custom scalar `BigInt` that is mapped to SQLAlchemy's `BigInteger`. diff --git a/pyproject.toml b/pyproject.toml index 3e4807c..03d8a9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-sqlalchemy-mapper" packages = [ { include = "strawberry_sqlalchemy_mapper", from = "src" } ] -version = "0.4.1" +version = "0.4.2" description = "A library for autogenerating Strawberry GraphQL types from SQLAlchemy models." authors = ["Tim Dumol "] license = "MIT"