Skip to content

Commit c1a99d4

Browse files
chore(tinytorch): bump version to tinytorch-v0.1.3
1 parent 6e9710e commit c1a99d4

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

tinytorch/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name="tinytorch"
7-
version = "0.1.2"
7+
version = "0.1.3"
88
description = "Build ML Systems from Scratch - Educational Deep Learning Framework"
99
readme = "README.md"
1010
requires-python=">=3.8"
Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
{
22
"enabled": true,
3-
"dismissId": "v0.1.2-feedback",
3+
"dismissId": "v0.1.3",
44
"items": [
55
{
66
"icon": "🎉",
7-
"text": "v0.1.2 released",
8-
"link": "https://github.com/harvard-edge/cs249r_book/releases/tag/tinytorch-v0.1.2",
9-
"linkText": "Release notes →"
10-
},
11-
{
12-
"icon": "🐛",
13-
"text": "Pre-release: Found a bug?",
14-
"link": "https://github.com/harvard-edge/cs249r_book/discussions/categories/tinytorch",
15-
"linkText": "Tell us →"
7+
"text": "v0.1.3 released — CLI improvements: reorganized commands, welcome message, feedback prompt",
8+
"link": "https://github.com/harvard-edge/cs249r_book/releases/tag/tinytorch-v0.1.3",
9+
"linkText": "See →"
1610
}
1711
]
1812
}

tinytorch/site/_static/version-badge.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
document.addEventListener('DOMContentLoaded', function() {
99
// Try to get version from meta tag first (set during build)
1010
const versionMeta = document.querySelector('meta[name="tinytorch-version"]');
11-
const version = versionMeta ? versionMeta.content : '0.1.2';
11+
const version = versionMeta ? versionMeta.content : '0.1.3';
1212

1313
// Find the footer
1414
const footer = document.querySelector('.footer');

tinytorch/site/extra/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ REPO_SHORT="harvard-edge/cs249r_book"
6767
BRANCH="main"
6868
INSTALL_DIR="tinytorch"
6969
SPARSE_PATH="tinytorch"
70-
TINYTORCH_VERSION="0.1.2"
70+
TINYTORCH_VERSION="0.1.3"
7171

7272
# ============================================================================
7373
# ANSI Color Codes (for terminal output)

0 commit comments

Comments
 (0)