We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cbe5a6 commit a95367fCopy full SHA for a95367f
CITATION.cff
@@ -9,11 +9,11 @@ identifiers:
9
value: 10.5281/zenodo.10799219
10
description: This is the collection of archived snapshots of all versions of thread.
11
- type: url
12
- value: https://github.com/python-thread/thread/releases/tag/v2.0.2
13
- 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.
14
15
- value: https://pypi.org/project/thread/2.0.2
16
- 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.
17
cff-version: 1.2.0
18
date-released: 2024年03月07日
19
keywords:
@@ -32,5 +32,5 @@ repository-code: https://github.com/python-thread/thread
32
repository-artifact: https://pypi.org/project/thread
33
title: thread
34
type: software
35
-version: 2.0.2
+version: 2.0.3
36
url: https://thread.ngjx.org
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"
20
},
21
"v1-release": {
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"
docs/src/pages/docs/index.mdx
@@ -69,7 +69,7 @@ This is a list of all the available releases.
69
>
70
<div className="flex flex-row items-center gap-2">
71
<ExternalLinkIcon className="w-6 h-6" />
72
- <Text className="text-lg font-bold">Latest v2.0.2</Text>
+ <Text className="text-lg font-bold">Latest v2.0.3</Text>
73
</div>
74
<Text className="text-sm font-light text-left ml-4">
75
This is the latest ***stable*** release.
@@ -110,6 +110,17 @@ This is a list of all the available releases.
110
111
<StatusBadge variant="dev">dev</StatusBadge>
112
</Link>
113
+ <Link
114
+ target="_blank"
115
+ href="/github/v2.0.3"
116
+ className="flex flex-row w-full justify-between px-4 py-2 rounded-md items-center text-sm font-light hover:bg-neutral-100/40 dark:hover:bg-neutral-800/20 transition-all"
117
+ >
118
+ <div className="flex flex-col justify-between">
119
+ <h1 className="font-normal text-lg">Release v2.0.3</h1>
120
+ <p>27 May 2024</p>
121
+ </div>
122
+ <StatusBadge variant="stable">stable</StatusBadge>
123
+ </Link>
124
<Link
125
target="_blank"
126
href="/github/v2.0.2"
docs/src/pages/docs/latest/index.mdx
@@ -11,9 +11,9 @@ import { Cards, Card } from "nextra/components";
This is `thread`, a Python library which extends Python's built-in `threading` library.
-## Thread v2.0.2
+## Thread v2.0.3
-You are viewing the documentation for the `v2.0.2` release.<br />
+You are viewing the documentation for the `v2.0.3` release.<br />
This is the most recent stable release of `thread`.
## Quick Start
docs/src/pages/index.mdx
@@ -1,5 +1,5 @@
1
---
2
-title: Thread v2.0.2
+title: Thread v2.0.3
3
4
5
import Link from "next/link";
@@ -71,7 +71,7 @@ export function Feature({
<span className="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
<span>Thread</span>
</span>
- <span> - v2.0.2</span>
+ <span> - v2.0.3</span>
</h1>
76
<div className="text-center">
77
<PackageManager />
docs/theme.config.tsx
@@ -50,7 +50,7 @@ const Head = () => {
50
const { route } = useRouter();
51
52
const pageTitle =
53
- route === "/" || !title ? "Thread v2.0.2" : `${title} | Thread v2.0.2`;
+ route === "/" || !title ? "Thread v2.0.3" : `${title} | Thread v2.0.3`;
54
const socialImage = "https://thread.ngjx.org/socialcard-white.jpg";
55
56
return (
@@ -125,7 +125,7 @@ const config: DocsThemeConfig = {
const { asPath } = useRouter();
if (asPath !== "/") {
127
return {
128
- titleTemplate: "%s | Thread v2.0.2",
+ titleTemplate: "%s | Thread v2.0.3",
129
};
130
131
pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "thread"
-version = "2.0.2"
+version = "2.0.3"
description = "Threading module extension"
authors = ["Alex <contact@ngjx.org>"]
6
license = "BSD-3-Clause"
@@ -30,7 +30,7 @@ classifiers = [
30
31
[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"
src/thread/__init__.py
"""
## Thread Library
-Documentation at https://thread.ngjx.org/docs/2.0.2
+Documentation at https://thread.ngjx.org/docs/2.0.3
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments