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

This commit is contained in:
github-actions[bot]
2026-01-29 21:50:01 +00:00
parent 637eea332b
commit 8154612fca
3 changed files with 5 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name="tinytorch"
version = "0.1.6"
version = "0.1.7"
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.6",
"dismissId": "v0.1.7",
"items": [
{
"icon": "🎉",
"text": "v0.1.6 released — Windows/Git Bash Support",
"link": "https://github.com/harvard-edge/cs249r_book/releases/tag/tinytorch-v0.1.6",
"text": "v0.1.7 released — Content updates and improvements",
"link": "https://github.com/harvard-edge/cs249r_book/releases/tag/tinytorch-v0.1.7",
"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.6';
const version = versionMeta ? versionMeta.content : '0.1.7';
// Find the footer
const footer = document.querySelector('.footer');