diff --git a/CHANGELOG.md b/CHANGELOG.md index 10d5d41d5..df0d313ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,26 @@ # Changelog -## [v1.1.6](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.1.6) (2024-11-18) +## [Unreleased](https://github.com/Materials-Consortia/optimade-python-tools/tree/HEAD) + +[Full Changelog](https://github.com/Materials-Consortia/optimade-python-tools/compare/v1.1.7...HEAD) + +**Closed issues:** + +- aligning `mongo_uri/database` breaks connecting to Atlas cluster [\#2197](https://github.com/Materials-Consortia/optimade-python-tools/issues/2197) + +## [v1.1.7](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.1.7) (2024-12-13) + +[Full Changelog](https://github.com/Materials-Consortia/optimade-python-tools/compare/v1.1.6...v1.1.7) + +**Closed issues:** + +- help me to download any compositional based material [\#2196](https://github.com/Materials-Consortia/optimade-python-tools/issues/2196) + +**Merged pull requests:** + +- Give warning instead of error for wrong mongo URI [\#2198](https://github.com/Materials-Consortia/optimade-python-tools/pull/2198) ([JPBergsma](https://github.com/JPBergsma)) + +## [v1.1.6](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.1.6) (2024-12-04) [Full Changelog](https://github.com/Materials-Consortia/optimade-python-tools/compare/v1.1.5...v1.1.6) diff --git a/docs/static/default_config.json b/docs/static/default_config.json index a2e1c1547..d977ad523 100644 --- a/docs/static/default_config.json +++ b/docs/static/default_config.json @@ -12,7 +12,7 @@ "base_url": null, "implementation": { "name": "OPTIMADE Python Tools", - "version": "1.1.6", + "version": "1.1.7", "source_url": "https://github.com/Materials-Consortia/optimade-python-tools", "maintainer": {"email": "dev@optimade.org"} }, diff --git a/openapi/index_openapi.json b/openapi/index_openapi.json index 653c34a97..6d02c3f4b 100644 --- a/openapi/index_openapi.json +++ b/openapi/index_openapi.json @@ -2,7 +2,7 @@ "openapi": "3.1.0", "info": { "title": "OPTIMADE API - Index meta-database", - "description": "The [Open Databases Integration for Materials Design (OPTIMADE) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\nThis is the \"special\" index meta-database.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.1.6) v1.1.6.", + "description": "The [Open Databases Integration for Materials Design (OPTIMADE) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\nThis is the \"special\" index meta-database.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.1.7) v1.1.7.", "version": "1.1.0" }, "paths": { diff --git a/openapi/openapi.json b/openapi/openapi.json index db1d9bbed..7822fe133 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -2,7 +2,7 @@ "openapi": "3.1.0", "info": { "title": "OPTIMADE API", - "description": "The [Open Databases Integration for Materials Design (OPTIMADE) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.1.6) v1.1.6.", + "description": "The [Open Databases Integration for Materials Design (OPTIMADE) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.1.7) v1.1.7.", "version": "1.1.0" }, "paths": { diff --git a/optimade/__init__.py b/optimade/__init__.py index 42cbbbf37..3a3227ab0 100644 --- a/optimade/__init__.py +++ b/optimade/__init__.py @@ -1,2 +1,2 @@ -__version__ = "1.1.6" +__version__ = "1.1.7" __api_version__ = "1.1.0"