From 8daaee8447657b160c37e1f85daaa3f6cf49a4f4 Mon Sep 17 00:00:00 2001 From: "Patrick K. Byers" Date: Mon, 20 May 2024 13:57:18 -0400 Subject: [PATCH 1/2] update version from 0.1.0 to 0.1 --- tutorials/installable-code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/installable-code.md b/tutorials/installable-code.md index dbf286ff..eb5e8047 100644 --- a/tutorials/installable-code.md +++ b/tutorials/installable-code.md @@ -390,7 +390,7 @@ path = "src/pyospackage/__about__.py" Edit the file as follows: 1. Delete `dynamic = ["version"]`: This sets up dynamic versioning based on tags stored in your git commit history. We will walk through implementing this in a later lesson. -2. Add `version = "0.1.0"` in the place of `dynamic = ["version"]` which you just deleted. This sets up manual versioning. +2. Add `version = "0.1"` in the place of `dynamic = ["version"]` which you just deleted. This sets up manual versioning. 3. Fill in the description if it doesn't already exist. ```toml From bf788159c40b0eda00f87c7db3bb66702b789297 Mon Sep 17 00:00:00 2001 From: "Patrick K. Byers" Date: Mon, 20 May 2024 15:01:02 -0400 Subject: [PATCH 2/2] update other mentions of version 0.1.0 on this page to 0.1 --- tutorials/installable-code.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/installable-code.md b/tutorials/installable-code.md index eb5e8047..df42ea36 100644 --- a/tutorials/installable-code.md +++ b/tutorials/installable-code.md @@ -449,7 +449,7 @@ build-backend = "hatchling.build" [project] name = "pyospackage" -version = "0.1.0" +version = "0.1" description = 'A python package that adds numbers together.' readme = "README.md" requires-python = ">=3.9" @@ -577,7 +577,7 @@ nox 2021.10.1 numpy 1.24.2 packaging 23.0 pandas 1.5.3 -pyosPackage 0.1.0 /Users/yourusername/path/here/pyosPackage +pyosPackage 0.1 /Users/yourusername/path/here/pyosPackage ... ... ...