chore(tinytorch): bump version to tinytorch-v0.1.9

This commit is contained in:
github-actions[bot]
2026-02-18 00:02:21 +00:00
parent d69a8d6f1d
commit f655cdfbba
4 changed files with 7 additions and 7 deletions

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name="tinytorch"
version = "0.1.8"
version = "0.1.9"
description = "Build ML Systems from Scratch - Educational Deep Learning Framework"
readme = "README.md"
requires-python=">=3.8"

View File

@@ -1,11 +1,11 @@
{
"enabled": true,
"dismissId": "v0.1.8",
"dismissId": "v0.1.9",
"items": [
{
"icon": "🎉",
"text": "v0.1.8 released — Content updates and improvements",
"link": "https://github.com/harvard-edge/cs249r_book/releases/tag/tinytorch-v0.1.8",
"text": "v0.1.9 released — Content updates and improvements",
"link": "https://github.com/harvard-edge/cs249r_book/releases/tag/tinytorch-v0.1.9",
"linkText": "See →"
}
]

View File

@@ -8,7 +8,7 @@
document.addEventListener('DOMContentLoaded', function() {
// Try to get version from meta tag first (set during build)
const versionMeta = document.querySelector('meta[name="tinytorch-version"]');
const version = versionMeta ? versionMeta.content : '0.1.8';
const version = versionMeta ? versionMeta.content : '0.1.9';
// Find the footer
const footer = document.querySelector('.footer');

View File

@@ -4,8 +4,8 @@
*/
// ── Release info (auto-updated by CI on publish) ──────────────
const TINYTORCH_VERSION = '0.1.8';
const TINYTORCH_RELEASE_DATE = 'Feb 7, 2026';
const TINYTORCH_VERSION = '0.1.9';
const TINYTORCH_RELEASE_DATE = 'Feb 18, 2026';
// ───────────────────────────────────────────────────────────────
document.addEventListener('DOMContentLoaded', function() {