Skip to content

Commit

Permalink
Merge pull request #42 from felixriese/version-130
Browse files Browse the repository at this point in the history
CHANGE version to 1.3.0
  • Loading branch information
felixriese committed Jul 8, 2023
2 parents af9ed18 + 0d1f799 commit af4bd80
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 12 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.rst
@@ -1,9 +1,12 @@
Change Log
==========

[1.2.3] - xxxx-xx-xx
[1.3.0] - 2023-07-08
--------------------
-
- [ADDED] Official support for Python 3.11.
- [FIXED] Quantization error axis bug.
- [REMOVED] Official support for Python 3.7 (deprecated in 2023). It might
still work, but will not be maintained on this version.

[1.2.2] - 2021-12-11
--------------------
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: Felix M.
orcid: https://orcid.org/0000-0003-0596-9585
title: "SuSi: SUpervised Self-organIzing maps in Python"
version: 1.2.2
version: 1.3.0
doi: "10.5281/zenodo.2609130"
date-released: 2021-12-11
repository-code: https://github.com/felixriese/susi
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2019-2022 Felix M. Riese.
Copyright (c) 2019-2023 Felix M. Riese.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -21,13 +21,13 @@
# -- Project information -----------------------------------------------------

project = "SuSi"
copyright = "2019-2022 Felix M. Riese"
copyright = "2019-2023 Felix M. Riese"
author = "Felix M. Riese"

# The short X.Y version
version = ""
# The full version, including alpha/beta/rc tags
release = "1.2.2"
release = "1.3.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion guide/README.md
Expand Up @@ -12,7 +12,7 @@ features:
details: Support for unsupervised clustering and visualization, semi-supervised and supervised classification and regression.
- title: Built-in visualization
details: Present your data with SuSi through built-in plotting scripts and example notebooks.
footer: Copyright © 2019-2022 Felix M. Riese
footer: Copyright © 2019-2023 Felix M. Riese
# search: false

---
Expand Down
2 changes: 1 addition & 1 deletion guide/package.json
@@ -1,6 +1,6 @@
{
"name": "susi-self-organizing-maps-with-python",
"version": "1.2.2",
"version": "1.3.0",
"description": "Susi is a Python package for unsupervised, supervised and semi-supervised self-organizing maps (SOM).",
"main": "index.js",
"authors": {
Expand Down
4 changes: 2 additions & 2 deletions meta.yaml
@@ -1,5 +1,5 @@
{% set name = "susi" %}
{% set version = "1.2.2" %}
{% set version = "1.3.0" %}


package:
Expand All @@ -26,7 +26,7 @@ requirements:
- scikit-learn >=0.21.1
- scipy >=1.3.1
- tqdm >=4.45.0
- matplotlib-base >=3.3.0
- matplotlib-base >=3.7.2
- seaborn >=0.11.0
- pandas >=1.1.5

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

setuptools.setup(
name="susi",
version="1.2.2",
version="1.3.0",
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.2"
__version__ = "1.3.0"

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

0 comments on commit af4bd80

Please sign in to comment.