Skip to content
This repository was archived by the owner on May 26, 2024. It is now read-only.

Commit b380da9

Browse files
Merge pull request #56 from python-thread/chore/bump-version
Bump to v2.0.1
2 parents 394c58a + 02a4a0d commit b380da9

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

src/pages/_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"type": "menu",
1616
"items": {
1717
"latest-release": {
18-
"title": "2.0.0 Latest Release",
18+
"title": "2.0.1 Latest Release",
1919
"href": "/docs/latest"
2020
},
2121
"v1-release": {

src/pages/docs/_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"timestamp": false
1111
}
1212
},
13-
"latest": "v2.0.0 Latest",
13+
"latest": "v2.0.1 Latest",
1414
"v1": "v1.1.1"
1515
}

src/pages/docs/index.mdx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export function Text({ children, className }) {return <p className={cn('text-sm
4343
<VersionLink className='w-56 flex-col justify-between items-start' href='/docs/v2'>
4444
<div className='flex flex-row items-center gap-2'>
4545
<ExternalLinkIcon className='w-6 h-6' />
46-
<Text className='text-lg font-bold'>Latest v2.0.0</Text>
46+
<Text className='text-lg font-bold'>Latest v2.0.1</Text>
4747
</div>
4848
<Text className='text-sm font-light text-left ml-4'>This is the latest ***stable*** release.</Text>
4949
<div className='flex flex-row self-end mt-auto mb-1 gap-2'>
@@ -73,6 +73,13 @@ export function Text({ children, className }) {return <p className={cn('text-sm
7373
</div>
7474
<StatusBadge variant='dev'>dev</StatusBadge>
7575
</Link>
76+
<Link target="_blank" href='/github/v2.0.1' 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">
77+
<div className="flex flex-col justify-between">
78+
<h1 className="font-normal text-lg">Release v2.0.1</h1>
79+
<p>28 April 2024</p>
80+
</div>
81+
<StatusBadge variant='stable'>stable</StatusBadge>
82+
</Link>
7683
<Link target="_blank" href='/github/v2.0.0' 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">
7784
<div className="flex flex-col justify-between">
7885
<h1 className="font-normal text-lg">Release v2.0.0</h1>

src/pages/docs/latest/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ This is `thread`, a Python library which extends Python's built-in `threading` l
99

1010

1111

12-
## Thread v2.0.0
12+
## Thread v2.0.1
1313

14-
You are viewing the documentation for the `v2.0.0` release.<br />
14+
You are viewing the documentation for the `v2.0.1` release.<br />
1515
This is the most recent stable release of `thread`.
1616

1717

src/pages/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Thread v2.0.0
2+
title: Thread v2.0.1
33
---
44

55
import Link from 'next/link'
@@ -40,7 +40,7 @@ export function Feature({ title, description, version = false, href = false, ...
4040
{/* Section 1 */}
4141
<section id='top'>
4242
<div className='h-full justify-center pb-16 text-center items-center flex flex-col gap-4' style={{ height: 'calc(100vh - 64px)' }}>
43-
<h1 className='text-4xl font-bold'><span className='bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500'>Thread</span> - v2.0.0</h1>
43+
<h1 className='text-4xl font-bold'><span className='bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500'>Thread</span> - v2.0.1</h1>
4444
<div className="text-center"><PackageManager /></div>
4545
<Link
4646
href='/docs'

theme.config.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const Head = () => {
2828
const { title } = useConfig()
2929
const { route } = useRouter()
3030

31-
const pageTitle = route === '/' || !title ? 'Thread v2.0.0' : `${title} | Thread v2.0.0`
31+
const pageTitle = route === '/' || !title ? 'Thread v2.0.1' : `${title} | Thread v2.0.1`
3232
const socialImage = 'https://thread.ngjx.org/socialcard-white.jpg'
3333

3434
return (
@@ -84,7 +84,7 @@ const config: DocsThemeConfig = {
8484
const { asPath } = useRouter()
8585
if (asPath !== '/') {
8686
return {
87-
titleTemplate: '%s | Thread v2.0.0',
87+
titleTemplate: '%s | Thread v2.0.1',
8888
}
8989
}
9090
},

0 commit comments

Comments
 (0)