diff --git a/.Rbuildignore b/.Rbuildignore
index b77f6c60..acee9471 100644
--- a/.Rbuildignore
+++ b/.Rbuildignore
@@ -22,5 +22,6 @@
^MANIFEST
^requirements\.txt$
^LICENSE$
-^coverage\.xml$
+^coverage
^\.coverage
+^codecov
diff --git a/.gitignore b/.gitignore
index e2fab314..1873345f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,4 +19,3 @@ devel/sphinx/_api
cache-*
coverage.xml
.coverage
-
diff --git a/DESCRIPTION b/DESCRIPTION
index 4eda2c88..2f9447b6 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -2,7 +2,7 @@ Package: genieclust
Type: Package
Title: The Genie++ Hierarchical Clustering Algorithm with Noise Points Detection
Version: 0.9.2
-Date: 2020-07-18
+Date: 2020-07-22
Authors@R: c(
person("Marek", "Gagolewski",
role = c("aut", "cre"),
diff --git a/NEWS b/NEWS
index d26facb6..9841ebe2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,7 @@
# `genieclust` Package NEWS
-## genieclust 0.9.2 (under development)
+## genieclust 0.9.2 (2020-07-22)
- [BUGFIX] [PYTHON] Fixed broken build script for OS X with no OpenMP.
diff --git a/docs/_sources/index.rst.txt b/docs/_sources/index.rst.txt
index e2ce781a..7a0c6081 100644
--- a/docs/_sources/index.rst.txt
+++ b/docs/_sources/index.rst.txt
@@ -6,7 +6,7 @@
`genieclust`: Fast and Robust Hierarchical Clustering with Noise Point Detection
================================================================================
- **Genie finds meaningful clusters and is fast even for large data sets.**
+ **Genie finds meaningful clusters and is fast even on large data sets.**
-- by `Marek Gagolewski
-Genie finds meaningful clusters and is fast even for large data sets.
+Genie finds meaningful clusters and is fast even on large data sets.
—by Marek Gagolewski
A faster and more powerful version of Genie 1 — a robust and outlier resistant diff --git a/genieclust/__init__.py b/genieclust/__init__.py index d32c0dd9..354c6030 100644 --- a/genieclust/__init__.py +++ b/genieclust/__init__.py @@ -21,4 +21,4 @@ from . import internal from .genie import Genie, GIc -__version__ = '0.9.2.dev0' # see also ../setup.py +__version__ = '0.9.2' # see also ../setup.py diff --git a/setup.py b/setup.py index 0c9ac34a..b3ba0fe1 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ def build_extensions(self): for e in self.extensions: e.extra_compile_args += ['-openmp', '-std=c++11'] e.extra_link_args += ['-openmp'] - elif sys.platform == "darwin": # and 'openmp' in os.getenv('CPPFLAGS', ''): + elif sys.platform == "darwin": # and 'openmp' in os.getenv('CPPFLAGS', ''): # -fopenmp can't be passed as compile flag when using Apple-clang. # OpenMP support has to be enabled during preprocessing. # @@ -128,7 +128,7 @@ def build_extensions(self): setuptools.setup( name="genieclust", - version="0.9.2.dev0", # see also genieclust/__init__.py + version="0.9.2", # see also genieclust/__init__.py description="The Genie++ Hierarchical Clustering Algorithm (with Extras)", long_description=long_description, long_description_content_type="text/x-rst",