This is an automated email from the ASF dual-hosted git repository. jky pushed a commit to branch 0.0.6 in repository https://gitbox.apache.org/repos/asf/flagon-distill.git
commit 965aa59b833b71c8033d99abc96a4c781d73d989 Author: Evan Jones <[email protected]> AuthorDate: Mon Sep 25 13:01:39 2023 -0400 ci(bump-version): adjusts the cz version bump and changelog to all PRs into dev --- .github/workflows/bump_version.yml | 11 ++++--- CHANGELOG.md | 56 ++++++++++++++++++++++++++++++++++ CHANGELOG.rst | 62 -------------------------------------- distill/__version__.py | 2 +- pyproject.toml | 4 +-- 5 files changed, 66 insertions(+), 69 deletions(-) diff --git a/.github/workflows/bump_version.yml b/.github/workflows/bump_version.yml index 4599748..b6e271a 100644 --- a/.github/workflows/bump_version.yml +++ b/.github/workflows/bump_version.yml @@ -17,10 +17,13 @@ name: Bump Version on: - workflow_run: - workflows: ["Release Audit Tool"] - types: - - completed + # workflow_run: + # workflows: ["Release Audit Tool"] + # types: + # - completed + push: + branches: + - dev jobs: bump-version: diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..bee2af1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,56 @@ +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +## v0.0.7 (2023-09-21) + +### Refactor + +- **Makefile**: run pre-commit hooks prior to commitizen + +## 0.0.6 (2023-08-18) + +- Migrate package and build management to poetry +- Remove deprecated setup code + +## 0.0.5 (2017-06-30) + +- Updated elasticsearch-dsl to 5.4.1 +- Removed all support for UserALE 3.0 +- General cleanup + +## 0.0.4 (2016-09-19) + +- Moved to Apache. +- Updated all documentation. +- Added License headers +- Docker compose file added to assist deployment of ELK stack with Distill + +## 0.0.3 (2016-07-22) + +- Moved CRUD operations from UserAle model to Brew model. +- Added API specs to segment UserAle data from Elasticsearch +- Added deployment instructions + +## 0.0.2 (2016-06-14) + +- Completed index route for status endpoint which lists all applications registered and their document count segmented by type. +- Updated setup.py to reference deploy scripts +- Example configuration to deploy Distill with Gunicorn and Nginx for Linux/Mac users +- Added UserAle and Stout classes. +- Updated requirements.txt for deployment. + +## 0.0.1 (2016-04-01) + +- Initial alpha release. diff --git a/CHANGELOG.rst b/CHANGELOG.rst deleted file mode 100644 index 2ed14ac..0000000 --- a/CHANGELOG.rst +++ /dev/null @@ -1,62 +0,0 @@ -.. .. - - <!--- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ---> - -.. _changelog: - -Changelog -========= - -0.1.0 (2022) ------------------- - -0.0.6 (2023-08-18) ------------------- -* Migrate package and build management to poetry -* Remove deprecated setup code - -0.0.5 (2017-06-30) ------------------- -* Updated elasticsearch-dsl to 5.4.1 -* Removed all support for UserALE 3.0 -* General cleanup - -0.0.4 (2016-09-19) ------------------- -* Moved to Apache. -* Updated all documentation. -* Added License headers -* Docker compose file added to assist deployment of ELK stack with Distill - -0.0.3 (2016-07-22) ------------------- -* Moved CRUD operations from UserAle model to Brew model. -* Added API specs to segment UserAle data from Elasticsearch -* Added deployment instructions - -0.0.2 (2016-06-14) ------------------- -* Completed index route for status endpoint which lists all applications registered and their document count segmented by type. -* Updated setup.py to reference deploy scripts -* Example configuration to deploy Distill with Gunicorn and Nginx for Linux/Mac users -* Added UserAle and Stout classes. -* Updated requirements.txt for deployment. - -0.0.1 (2016-04-01) ------------------- -* Initial alpha release. diff --git a/distill/__version__.py b/distill/__version__.py index e5e48a0..efc3d82 100644 --- a/distill/__version__.py +++ b/distill/__version__.py @@ -20,4 +20,4 @@ This file is imported by ``Distill.__init__``, and parsed by ``setup.py``. """ -version = "v0.0.6" +version = "v0.0.7" diff --git a/pyproject.toml b/pyproject.toml index 452c29f..0460fdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ [tool.poetry] name = "flagon-distill" -version = "v0.0.6" +version = "0.0.7" description = "An analytics framework for front-end UserALE data, enabling modeling, sequence analysis, and customization in Python." authors = [] license = "Apache-2.0" @@ -93,7 +93,7 @@ version_scheme = "semver" version_provider = "poetry" update_changelog_on_bump = true major_version_zero = true -version = "0.0.6" +version = "0.0.7" gpg_sign = true version_files = ["pyproject.toml:version", "distill/__version__.py"]
