diff --git a/README.md b/README.md index 9e9b335..1faded5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -![PyPI](https://img.shields.io/pypi/v/lazy-loader?style=for-the-badge) +![PyPI](https://img.shields.io/pypi/v/lazy_loader?style=for-the-badge) -`lazy-loader` makes it easy to load subpackages and functions on demand. +`lazy_loader` makes it easy to load subpackages and functions on demand. ## Motivation @@ -12,7 +12,7 @@ For a more detailed discussion, see [the SPEC](https://scientific-python.org/spe ## Installation ``` -pip install -U lazy-loader +pip install -U lazy_loader ``` ## Usage diff --git a/RELEASE.md b/RELEASE.md index 42cc3ff..232a949 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -4,11 +4,11 @@ Example `version` -- 1.8.dev0 \# development version of 1.8 (release candidate 1) -- 1.8rc1 \# 1.8 release candidate 1 -- 1.8rc2.dev0 \# development version of 1.8 (release candidate 2) -- 1.8 \# 1.8 release -- 1.9.dev0 \# development version of 1.9 (release candidate 1) +- 1.8.dev0 # development version of 1.8 (release candidate 1) +- 1.8rc1 # 1.8 release candidate 1 +- 1.8rc2.dev0 # development version of 1.8 (release candidate 2) +- 1.8 # 1.8 release +- 1.9.dev0 # development version of 1.9 (release candidate 1) ## Process @@ -24,7 +24,7 @@ Example `version` git add pyproject.toml CHANGELOG.md git commit -m 'Designate release' -- Add the version number (e.g., [v1.2.0]{.title-ref}) as a tag in git: +- Add the version number (e.g., `1.2.0`) as a tag in git: git tag -s [-u ] v -m 'signed tag' diff --git a/pyproject.toml b/pyproject.toml index 31955b7..f9feca4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ lint = ["pre-commit >= 2.20"] [project.urls] Home = "https://scientific-python.org/specs/spec-0001/" -Source = "https://github.com/scientific-python/lazy-loader" +Source = "https://github.com/scientific-python/lazy_loader" [tool.flit.sdist] exclude = ["tests/*"]