Skip to content

Commit

Permalink
Bump version to RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Jul 22, 2022
1 parent 5577189 commit 8edd8f9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions coloraide/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ class Version(namedtuple("Version", ["major", "minor", "micro", "release", "pre"
Version(1, 0, 0, "final") 1.0
Version(1, 2, 0, "final") 1.2
Version(1, 2, 3, "final") 1.2.3
Version(1, 2, 0, ".dev-alpha", pre=4) 1.2a4
Version(1, 2, 0, ".dev-beta", pre=4) 1.2b4
Version(1, 2, 0, ".dev-candidate", pre=4) 1.2rc4
Version(1, 2, 0, "alpha", pre=4) 1.2a4
Version(1, 2, 0, "beta", pre=4) 1.2b4
Version(1, 2, 0, "candidate", pre=4) 1.2rc4
Version(1, 2, 0, "final", post=1) 1.2.post1
Version(1, 2, 3, ".dev") 1.2.3.dev0
Version(1, 2, 3, ".dev", dev=1) 1.2.3.dev1
Expand Down Expand Up @@ -192,5 +192,5 @@ def parse_version(ver: str) -> Version:
return Version(major, minor, micro, release, pre, post, dev)


__version_info__ = Version(1, 0, 0, "beta", 4)
__version_info__ = Version(1, 0, 0, "candidate", 1)
__version__ = __version_info__._get_canonical()
2 changes: 1 addition & 1 deletion docs/src/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ extra_css:
- assets/coloraide-extras/extra.css
extra_javascript:
- https://unpkg.com/[email protected]/dist/mermaid.min.js
- playground-config-05233d65.js
- playground-config-7be870c1.js
- https://cdn.jsdelivr.net/pyodide/v0.20.0/full/pyodide.js
- assets/coloraide-extras/extra-notebook.js

Expand Down
2 changes: 1 addition & 1 deletion docs/theme/announce.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% set icon = "material/alert-decagram" %}
{% include ".icons/" ~ icon ~ ".svg" %}
</span>
New beta 1.0b3 has been released. Check out the <a href="{{ 'about/releases/1.0' | url }}"> release notes</a> for more information and migration tips.
New release candidate 1.0rc1 has been released. Check out the <a href="{{ 'about/releases/1.0' | url }}"> release notes</a> for more information and migration tips.
<br>
<a href="{{ 'about/contributing/#become-a-sponsor' | url }}">Sponsorship</a>
is now available!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var color_notebook = {
"playground_wheels": ['Pygments-2.12.0-py3-none-any.whl', 'coloraide-1.0b4-py3-none-any.whl'],
"notebook_wheels": ['Markdown-3.3.4-py3-none-any.whl', 'pymdown_extensions-9.5-py3-none-any.whl', 'Pygments-2.12.0-py3-none-any.whl', 'coloraide-1.0b4-py3-none-any.whl'],
"playground_wheels": ['Pygments-2.12.0-py3-none-any.whl', 'coloraide-1.0rc1-py3-none-any.whl'],
"notebook_wheels": ['Markdown-3.3.4-py3-none-any.whl', 'pymdown_extensions-9.5-py3-none-any.whl', 'Pygments-2.12.0-py3-none-any.whl', 'coloraide-1.0rc1-py3-none-any.whl'],
"default_playground": "import coloraide\ncoloraide.__version__\nColor('red')"
}
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ extra_css:
- assets/coloraide-extras/extra-753860a807.css
extra_javascript:
- https://unpkg.com/[email protected]/dist/mermaid.min.js
- playground-config-05233d65.js
- playground-config-7be870c1.js
- https://cdn.jsdelivr.net/pyodide/v0.20.0/full/pyodide.js
- assets/coloraide-extras/extra-notebook-6edfcb69.js

Expand Down

0 comments on commit 8edd8f9

Please sign in to comment.