From a95367fad6ae8c598349b88d5c586970fb58b743 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jun=20Xiang=20=28=E3=82=AB=E3=82=A8=E3=83=87=29?= Date: Mon, 27 May 2024 10:36:00 +0800 Subject: [PATCH] chore(ver): Bumpp v2.0.2 -> v2.0.3 (#106) Signed-off-by: AlexNg --- CITATION.cff | 10 +++++----- docs/src/pages/_meta.json | 2 +- docs/src/pages/docs/_meta.json | 2 +- docs/src/pages/docs/index.mdx | 13 ++++++++++++- docs/src/pages/docs/latest/index.mdx | 4 ++-- docs/src/pages/index.mdx | 4 ++-- docs/theme.config.tsx | 4 ++-- pyproject.toml | 4 ++-- src/thread/__init__.py | 2 +- 9 files changed, 28 insertions(+), 17 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 2691710..f11cdea 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -9,11 +9,11 @@ identifiers: value: 10.5281/zenodo.10799219 description: This is the collection of archived snapshots of all versions of thread. - type: url - value: https://github.com/python-thread/thread/releases/tag/v2.0.2 - description: The GitHub release URL of tag v2.0.2. + value: https://github.com/python-thread/thread/releases/tag/v2.0.3 + description: The GitHub release URL of tag v2.0.3. - type: url - value: https://pypi.org/project/thread/2.0.2 - description: The PyPI release URL of tag v2.0.2. + value: https://pypi.org/project/thread/2.0.3 + description: The PyPI release URL of tag v2.0.3. cff-version: 1.2.0 date-released: 2024-03-07 keywords: @@ -32,5 +32,5 @@ repository-code: https://github.com/python-thread/thread repository-artifact: https://pypi.org/project/thread title: thread type: software -version: 2.0.2 +version: 2.0.3 url: https://thread.ngjx.org diff --git a/docs/src/pages/_meta.json b/docs/src/pages/_meta.json index 5a13022..cc8c666 100644 --- a/docs/src/pages/_meta.json +++ b/docs/src/pages/_meta.json @@ -15,7 +15,7 @@ "type": "menu", "items": { "latest-release": { - "title": "2.0.2 Latest Release", + "title": "2.0.3 Latest Release", "href": "/docs/latest" }, "v1-release": { diff --git a/docs/src/pages/docs/_meta.json b/docs/src/pages/docs/_meta.json index 7f829db..da15b0e 100644 --- a/docs/src/pages/docs/_meta.json +++ b/docs/src/pages/docs/_meta.json @@ -10,6 +10,6 @@ "timestamp": false } }, - "latest": "v2.0.2 Latest", + "latest": "v2.0.3 Latest", "v1": "v1.1.1" } diff --git a/docs/src/pages/docs/index.mdx b/docs/src/pages/docs/index.mdx index 9d506d4..c8411b1 100644 --- a/docs/src/pages/docs/index.mdx +++ b/docs/src/pages/docs/index.mdx @@ -69,7 +69,7 @@ This is a list of all the available releases. >
- Latest v2.0.2 + Latest v2.0.3
This is the latest ***stable*** release. @@ -110,6 +110,17 @@ This is a list of all the available releases. dev + +
+

Release v2.0.3

+

27 May 2024

+
+ stable + +You are viewing the documentation for the `v2.0.3` release.
This is the most recent stable release of `thread`. ## Quick Start diff --git a/docs/src/pages/index.mdx b/docs/src/pages/index.mdx index 0933245..c604bec 100644 --- a/docs/src/pages/index.mdx +++ b/docs/src/pages/index.mdx @@ -1,5 +1,5 @@ --- -title: Thread v2.0.2 +title: Thread v2.0.3 --- import Link from "next/link"; @@ -71,7 +71,7 @@ export function Feature({ Thread -  - v2.0.2 +  - v2.0.3
diff --git a/docs/theme.config.tsx b/docs/theme.config.tsx index e79e663..09eaa15 100644 --- a/docs/theme.config.tsx +++ b/docs/theme.config.tsx @@ -50,7 +50,7 @@ const Head = () => { const { route } = useRouter(); const pageTitle = - route === "/" || !title ? "Thread v2.0.2" : `${title} | Thread v2.0.2`; + route === "/" || !title ? "Thread v2.0.3" : `${title} | Thread v2.0.3`; const socialImage = "https://thread.ngjx.org/socialcard-white.jpg"; return ( @@ -125,7 +125,7 @@ const config: DocsThemeConfig = { const { asPath } = useRouter(); if (asPath !== "/") { return { - titleTemplate: "%s | Thread v2.0.2", + titleTemplate: "%s | Thread v2.0.3", }; } }, diff --git a/pyproject.toml b/pyproject.toml index 643f64a..3d891ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "thread" -version = "2.0.2" +version = "2.0.3" description = "Threading module extension" authors = ["Alex "] license = "BSD-3-Clause" @@ -30,7 +30,7 @@ classifiers = [ [tool.poetry.urls] Homepage = "https://thread.ngjx.org" -Documentation = "https://thread.ngjx.org/docs/v2.0.2" +Documentation = "https://thread.ngjx.org/docs/v2.0.3" Source = "https://github.com/python-thread/thread" Download = "https://pypi.org/project/thread/#files" "Release Notes" = "https://github.com/python-thread/thread/releases" diff --git a/src/thread/__init__.py b/src/thread/__init__.py index 154cdd4..51496e7 100644 --- a/src/thread/__init__.py +++ b/src/thread/__init__.py @@ -1,6 +1,6 @@ """ ## Thread Library -Documentation at https://thread.ngjx.org/docs/2.0.2 +Documentation at https://thread.ngjx.org/docs/2.0.3 ---