diff --git a/CHANGELOG.md b/CHANGELOG.md index 0566894..6d728bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to ## [Unreleased] +## [0.6.0] - 2024-07-16 + ### Added - Integrate pyinstrument profiler @@ -61,8 +63,9 @@ and this project adheres to - Implement CSV output format - Implement Parquet output format -[unreleased]: https://github.com/jmaupetit/data7/compare/v0.5.0...main -[0.4.1]: https://github.com/jmaupetit/data7/compare/v0.4.1...v0.5.0 +[unreleased]: https://github.com/jmaupetit/data7/compare/v0.6.0...main +[0.6.0]: https://github.com/jmaupetit/data7/compare/v0.5.0...v0.6.0 +[0.5.0]: https://github.com/jmaupetit/data7/compare/v0.4.1...v0.5.0 [0.4.1]: https://github.com/jmaupetit/data7/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/jmaupetit/data7/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/jmaupetit/data7/compare/v0.2.0...v0.3.0 diff --git a/pyproject.toml b/pyproject.toml index cc0014c..5c657fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "data7" -version = "0.5.0" +version = "0.6.0" description = "Data7 streams CSV/Parquet datasets over HTTP from SQL queries." authors = ["Julien Maupetit "] license = "MIT" @@ -31,6 +31,7 @@ uvicorn = {extras = ["standard"], version = "^0.30.1"} asyncpg = "^0.29.0" black = "^24.4.2" databases = {extras = ["aiosqlite"], version = "^0.9.0"} +matplotlib = "^3.9.1" mkdocs-material = "^9.5.27" mypy = "^1.10.0" psycopg2-binary = "^2.9.9" @@ -39,7 +40,6 @@ pytest-cov = "^5.0.0" pytest-httpx = "^0.30.0" ruff = ">=0.4.10,<0.6.0" types-pyyaml = "^6.0.12.20240311" -matplotlib = "^3.9.1" [tool.poetry.scripts] data7 = "data7.cli:cli"