Skip to content

Commit b58e3c6

Browse files
authored
updating the version (#128)
1 parent 69fa27c commit b58e3c6

File tree

19 files changed

+2273
-3747
lines changed

19 files changed

+2273
-3747
lines changed

dds/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.8.0"
1+
version = "0.9.0"

doc_source/changelog.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# Changelog
22

3+
## v0.9.0
4+
5+
Adding two useful stores for checking the correctness of the code without
6+
relying on DDS. See the documentation of `dds.set_store`.
7+
38
## v0.8.0
49

510
A number of small improvements in ergonomics to this release:
611

712
* the error messages are more complete and include more contextual information
8-
* more types are supported by default during the analysis phase: lists, dictionaries,
13+
* more types are supported by default during the analysis phase: lists, dictionaries,
914
dates (`datetime` objects), arbitrary named tuples and arbitrary data classes.
1015
* the input for `@data_function` has been tightened to reflect the fact that data functions
1116
should not take arguments (`dds.keep` should be used instead). Passing arguments
@@ -14,7 +19,7 @@ now triggers an error.
1419
## v0.7.3
1520

1621
Fixes the usage of positional and keyworded arguments when used in conjunction
17-
with `dds.keep`.
22+
with `dds.keep`.
1823

1924
## v0.7.2
2025

@@ -26,7 +31,7 @@ Small usability fixes in this release:
2631

2732
## v0.7.0
2833

29-
Adds a major feature: caching in memory of most recently used objects. See the documentation of
34+
Adds a major feature: caching in memory of most recently used objects. See the documentation of
3035
`dds.set_store`.
3136

3237
Other features:
@@ -36,7 +41,7 @@ Other features:
3641
## v0.6.0
3742

3843
This is a major release that changes
39-
the algorithm of calculating the signatures.
44+
the algorithm of calculating the signatures.
4045
*Upgrading from a previous version will trigger the cache to be calculated again*.
4146

4247
This change is not expected to happen again except for localized bug fixes.

docs/404.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<link rel="stylesheet" href="/css/theme.css" />
1616
<link rel="stylesheet" href="/css/theme_extra.css" />
1717
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css" />
18-
<link href="/assets/_mkdocstrings.css" rel="stylesheet" />
1918
<link href="/extra.css" rel="stylesheet" />
2019

2120
<script src="/js/jquery-2.1.1.min.js" defer></script>

docs/assets/_mkdocstrings.css

Lines changed: 0 additions & 28 deletions
This file was deleted.

docs/changelog/changelog.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# Changelog
22

3+
## v0.9.0
4+
5+
Adding two useful stores for checking the correctness of the code without
6+
relying on DDS. See the documentation of `dds.set_store`.
7+
38
## v0.8.0
49

510
A number of small improvements in ergonomics to this release:
611

712
* the error messages are more complete and include more contextual information
8-
* more types are supported by default during the analysis phase: lists, dictionaries,
13+
* more types are supported by default during the analysis phase: lists, dictionaries,
914
dates (`datetime` objects), arbitrary named tuples and arbitrary data classes.
1015
* the input for `@data_function` has been tightened to reflect the fact that data functions
1116
should not take arguments (`dds.keep` should be used instead). Passing arguments
@@ -14,7 +19,7 @@ now triggers an error.
1419
## v0.7.3
1520

1621
Fixes the usage of positional and keyworded arguments when used in conjunction
17-
with `dds.keep`.
22+
with `dds.keep`.
1823

1924
## v0.7.2
2025

@@ -26,7 +31,7 @@ Small usability fixes in this release:
2631

2732
## v0.7.0
2833

29-
Adds a major feature: caching in memory of most recently used objects. See the documentation of
34+
Adds a major feature: caching in memory of most recently used objects. See the documentation of
3035
`dds.set_store`.
3136

3237
Other features:
@@ -36,7 +41,7 @@ Other features:
3641
## v0.6.0
3742

3843
This is a major release that changes
39-
the algorithm of calculating the signatures.
44+
the algorithm of calculating the signatures.
4045
*Upgrading from a previous version will trigger the cache to be calculated again*.
4146

4247
This change is not expected to happen again except for localized bug fixes.

docs/changelog/index.html

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<link rel="stylesheet" href="../css/theme.css" />
1616
<link rel="stylesheet" href="../css/theme_extra.css" />
1717
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css" />
18-
<link href="../assets/_mkdocstrings.css" rel="stylesheet" />
1918
<link href="../extra.css" rel="stylesheet" />
2019

2120
<script>
@@ -88,6 +87,8 @@
8887
<ul class="current">
8988
<li class="toctree-l1 current"><a class="reference internal current" href="./">Changelog</a>
9089
<ul class="current">
90+
<li class="toctree-l2"><a class="reference internal" href="#v090">v0.9.0</a>
91+
</li>
9192
<li class="toctree-l2"><a class="reference internal" href="#v080">v0.8.0</a>
9293
</li>
9394
<li class="toctree-l2"><a class="reference internal" href="#v073">v0.7.3</a>
@@ -134,19 +135,22 @@
134135
<div class="section">
135136

136137
<h1 id="changelog">Changelog</h1>
138+
<h2 id="v090">v0.9.0</h2>
139+
<p>Adding two useful stores for checking the correctness of the code without
140+
relying on DDS. See the documentation of <code>dds.set_store</code>.</p>
137141
<h2 id="v080">v0.8.0</h2>
138142
<p>A number of small improvements in ergonomics to this release:</p>
139143
<ul>
140144
<li>the error messages are more complete and include more contextual information</li>
141-
<li>more types are supported by default during the analysis phase: lists, dictionaries,
145+
<li>more types are supported by default during the analysis phase: lists, dictionaries,
142146
dates (<code>datetime</code> objects), arbitrary named tuples and arbitrary data classes.</li>
143147
<li>the input for <code>@data_function</code> has been tightened to reflect the fact that data functions
144148
should not take arguments (<code>dds.keep</code> should be used instead). Passing arguments
145149
now triggers an error.</li>
146150
</ul>
147151
<h2 id="v073">v0.7.3</h2>
148152
<p>Fixes the usage of positional and keyworded arguments when used in conjunction
149-
with <code>dds.keep</code>. </p>
153+
with <code>dds.keep</code>.</p>
150154
<h2 id="v072">v0.7.2</h2>
151155
<p>Small usability fixes in this release:</p>
152156
<ul>
@@ -155,15 +159,15 @@ <h2 id="v072">v0.7.2</h2>
155159
<li>improves debugging messages (with a potential extra round trip to the store)</li>
156160
</ul>
157161
<h2 id="v070">v0.7.0</h2>
158-
<p>Adds a major feature: caching in memory of most recently used objects. See the documentation of
162+
<p>Adds a major feature: caching in memory of most recently used objects. See the documentation of
159163
<code>dds.set_store</code>.</p>
160164
<p>Other features:</p>
161165
<ul>
162166
<li>keyworded arguments are now accepted in <code>dds.keep</code> and <code>dds.eval</code></li>
163167
</ul>
164168
<h2 id="v060">v0.6.0</h2>
165169
<p>This is a major release that changes
166-
the algorithm of calculating the signatures.
170+
the algorithm of calculating the signatures.
167171
<em>Upgrading from a previous version will trigger the cache to be calculated again</em>.</p>
168172
<p>This change is not expected to happen again except for localized bug fixes.</p>
169173

0 commit comments

Comments
 (0)