From 422601891708e5a482595cf7ab189dfd9ff70dda Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Tue, 30 Jan 2024 10:53:03 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.0.0rc0=20=E2=86=92=201.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 11 +++++++++++ Makefile | 2 +- fmtm_splitter/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 361fe47..b8101db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## 1.0.0 (2024-01-30) + +### Fix + +- also accept sqlalchemy.orm.Session objects +- num_buildings is int type (not str) + +### Refactor + +- suppress geopandas 'column does not contain geometry' + ## 1.0.0rc0 (2024-01-21) ### Feat diff --git a/Makefile b/Makefile index ce3b82c..cead0a7 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := fmtm-splitter -VERSION := 1.0.0rc0 +VERSION := 1.0.0 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/fmtm_splitter/__version__.py b/fmtm_splitter/__version__.py index bcf7f89..5becc17 100644 --- a/fmtm_splitter/__version__.py +++ b/fmtm_splitter/__version__.py @@ -1 +1 @@ -__version__ = "1.0.0rc0" +__version__ = "1.0.0" diff --git a/pyproject.toml b/pyproject.toml index 932d935..679f2f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ pythonpath = "fmtm_splitter" [tool.commitizen] name = "cz_conventional_commits" -version = "1.0.0rc0" +version = "1.0.0" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py",