Skip to content

Commit

Permalink
Prepare for 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
felixriese committed Oct 19, 2021
1 parent fdac365 commit 44597ab
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
@@ -1,6 +1,10 @@
Change Log
==========

[1.2.1] - 2021-10-19
--------------------
- [ADDED] Quantization error `get_quantization_error()`

[1.2] - 2021-04-04
------------------
- [ADDED] Landing page with vuepress.
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Expand Up @@ -5,9 +5,9 @@ authors:
given-names: Felix M.
orcid: https://orcid.org/0000-0003-0596-9585
title: "SuSi: SUpervised Self-organIzing maps in Python"
version: 1.2.0
version: 1.2.1
doi: "10.5281/zenodo.2609130"
date-released: 2021-04-04
date-released: 2021-10-19
repository-code: https://github.com/felixriese/susi
license: BSD-3-Clause
preferred-citation:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -27,7 +27,7 @@
# The short X.Y version
version = ""
# The full version, including alpha/beta/rc tags
release = "1.2"
release = "1.2.1"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
@@ -1,5 +1,5 @@
{% set name = "susi" %}
{% set version = "1.2" %}
{% set version = "1.2.1" %}


package:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -14,7 +14,7 @@

setuptools.setup(
name="susi",
version="1.2",
version="1.2.1",
author="Felix M. Riese",
author_email="github@felixriese.de",
description=(
Expand Down
2 changes: 1 addition & 1 deletion susi/__init__.py
Expand Up @@ -4,7 +4,7 @@
self-organizing maps (SOM).
"""
__version__ = "1.2"
__version__ = "1.2.1"

from .SOMClassifier import SOMClassifier
from .SOMClustering import SOMClustering
Expand Down

0 comments on commit 44597ab

Please sign in to comment.