diff --git a/CHANGELOG.md b/CHANGELOG.md index 07d3e26..93842f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ Not quite compatible with Octave yet. See #43 [octave support](https://github.co ## Changelog -### 0.9.38-dev +### 0.9.38 * Fix issue where a Simulink model with self-contained links would not parse the referenced systems. Only the top-level system would be diff --git a/docs/bmc.html b/docs/bmc.html index c78193a..180b3d1 100644 --- a/docs/bmc.html +++ b/docs/bmc.html @@ -11,7 +11,7 @@ -
MISS_HIT 0.9.38-dev Bounded Model Checker
+
MISS_HIT 0.9.38 Bounded Model Checker
diff --git a/docs/cli.html b/docs/cli.html index 7be9a13..c9142ef 100644 --- a/docs/cli.html +++ b/docs/cli.html @@ -11,7 +11,7 @@ -
MISS_HIT 0.9.38-dev Command-line Interface
+
MISS_HIT 0.9.38 Command-line Interface
diff --git a/docs/configuration.html b/docs/configuration.html index f87ae84..8bee7f1 100644 --- a/docs/configuration.html +++ b/docs/configuration.html @@ -11,7 +11,7 @@ -
MISS_HIT 0.9.38-dev Configuration System
+
MISS_HIT 0.9.38 Configuration System
diff --git a/docs/copyright.html b/docs/copyright.html index fdb9b91..9e76e70 100644 --- a/docs/copyright.html +++ b/docs/copyright.html @@ -11,7 +11,7 @@ -
MISS_HIT 0.9.38-dev Copyright Tool
+
MISS_HIT 0.9.38 Copyright Tool
diff --git a/docs/diff.html b/docs/diff.html index 463b863..c725889 100644 --- a/docs/diff.html +++ b/docs/diff.html @@ -11,7 +11,7 @@ -
MISS_HIT 0.9.38-dev Diff Tool
+
MISS_HIT 0.9.38 Diff Tool
diff --git a/docs/index.html b/docs/index.html index bc62118..4c0d108 100644 --- a/docs/index.html +++ b/docs/index.html @@ -11,7 +11,7 @@ -
MISS_HIT 0.9.38-dev Documentation
+
MISS_HIT 0.9.38 Documentation
MISS_HIT is a compiler framework for the MATLAB and Octave diff --git a/docs/lint.html b/docs/lint.html index d805d88..f681930 100644 --- a/docs/lint.html +++ b/docs/lint.html @@ -11,7 +11,7 @@ -
MISS_HIT 0.9.38-dev Linter
+
MISS_HIT 0.9.38 Linter
diff --git a/docs/metrics.html b/docs/metrics.html index 9d42917..2a4096c 100644 --- a/docs/metrics.html +++ b/docs/metrics.html @@ -11,7 +11,7 @@ -
MISS_HIT 0.9.38-dev Code Metrics
+
MISS_HIT 0.9.38 Code Metrics
diff --git a/docs/pragmas.html b/docs/pragmas.html index 3d12eb7..65c446b 100644 --- a/docs/pragmas.html +++ b/docs/pragmas.html @@ -11,7 +11,7 @@ -
MISS_HIT 0.9.38-dev Pragmas
+
MISS_HIT 0.9.38 Pragmas
diff --git a/docs/style_checker.html b/docs/style_checker.html index 9d9e136..5482b12 100644 --- a/docs/style_checker.html +++ b/docs/style_checker.html @@ -11,7 +11,7 @@ -
MISS_HIT 0.9.38-dev Style Checker
+
MISS_HIT 0.9.38 Style Checker
diff --git a/docs/trace.html b/docs/trace.html index 5a7b254..95311aa 100644 --- a/docs/trace.html +++ b/docs/trace.html @@ -11,7 +11,7 @@ -
MISS_HIT 0.9.38-dev Tracing Tool
+
MISS_HIT 0.9.38 Tracing Tool
diff --git a/miss_hit_core/version.py b/miss_hit_core/version.py index 80d557a..03eb821 100644 --- a/miss_hit_core/version.py +++ b/miss_hit_core/version.py @@ -28,7 +28,7 @@ GITHUB_ISSUES = "https://github.com/florianschanda/miss_hit/issues" VERSION_TUPLE = (0, 9, 38) -VERSION_SUFFIX = "dev" +VERSION_SUFFIX = "" VERSION = ("%u.%u.%u" % VERSION_TUPLE) + \ ("-%s" % VERSION_SUFFIX if VERSION_SUFFIX else "")