Skip to content

Commit

Permalink
Prepare for release of v2.1.0 (#6853)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Jul 25, 2023
1 parent f8c081e commit 3284a24
Show file tree
Hide file tree
Showing 6 changed files with 862 additions and 800 deletions.
1,652 changes: 857 additions & 795 deletions HISTORY.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/blog/pydantic-v2-alpha.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![Terrence Dorsey](../img/terrencedorsey.jpg)
<div markdown>
**Terrence Dorsey & Samuel Colvin** &bull;&nbsp;
[:material-github:](https://github.com/pydantic) &bull;&nbsp;
[:simple-github:](https://github.com/pydantic) &bull;&nbsp;
[:material-twitter:](https://twitter.com/pydantic) &bull;&nbsp;
:octicons-calendar-24: April 3, 2023 &bull;&nbsp;
:octicons-clock-24: 8 min read
Expand Down
2 changes: 1 addition & 1 deletion docs/blog/pydantic-v2-final.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![Terrence Dorsey](../img/terrencedorsey.jpg)
<div markdown>
**Terrence Dorsey & Samuel Colvin** &bull;&nbsp;
[:material-github:](https://github.com/pydantic) &bull;&nbsp;
[:simple-github:](https://github.com/pydantic) &bull;&nbsp;
[:material-twitter:](https://twitter.com/pydantic) &bull;&nbsp;
:octicons-calendar-24: June 30, 2023 &bull;&nbsp;
:octicons-clock-24: 2 min read
Expand Down
2 changes: 1 addition & 1 deletion docs/blog/pydantic-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![Samuel Colvin](../img/samuelcolvin.jpg)
<div markdown>
**Samuel Colvin** &bull;&nbsp;
[:material-github:](https://github.com/samuelcolvin) &bull;&nbsp;
[:simple-github:](https://github.com/samuelcolvin) &bull;&nbsp;
[:material-twitter:](https://twitter.com/samuel_colvin) &bull;&nbsp;
:octicons-calendar-24: Jul 10, 2022 &bull;&nbsp;
:octicons-clock-24: 25 min read
Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def on_page_markdown(markdown: str, page: Page, config: Config, files: Files) ->

def add_changelog() -> None:
history = (PROJECT_ROOT / 'HISTORY.md').read_text()
history = re.sub(r'#(\d+)', r'[#\1](https://github.com/pydantic/pydantic/issues/\1)', history)
history = re.sub(r'(\s)@([\w\-]+)', r'\1[@\2](https://github.com/\2)', history, flags=re.I)
history = re.sub(r'\[GitHub release]\(', r'[:simple-github: GitHub release](', history)
history = re.sub('@@', '@', history)
new_file = DOCS_DIR / 'changelog.md'

Expand Down
2 changes: 1 addition & 1 deletion pydantic/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__all__ = 'VERSION', 'version_info'

VERSION = '2.0.3'
VERSION = '2.1.0'
"""The version of Pydantic."""


Expand Down

0 comments on commit 3284a24

Please sign in to comment.