From c7bdb5b9dea035245245454dcfd17157d2352c89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Gauth=C3=A9?= Date: Fri, 24 Jan 2025 15:02:09 -0500 Subject: [PATCH 1/2] mention generate in README.md --- Project.toml | 2 +- README.md | 1 + examples/README.jl | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 26f404e..efb9510 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ITensorPkgSkeleton" uuid = "3d388ab1-018a-49f4-ae50-18094d5f71ea" authors = ["ITensor developers and contributors"] -version = "0.2.1" +version = "0.2.2" [deps] DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" diff --git a/README.md b/README.md index 1138aa7..970e59d 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ julia> Pkg.add("ITensorPkgSkeleton") ````julia using ITensorPkgSkeleton: ITensorPkgSkeleton +ITensorPkgSkeleton.generate("MyPackage.jl") ```` Examples go here. diff --git a/examples/README.jl b/examples/README.jl index d5435ae..ca36b65 100644 --- a/examples/README.jl +++ b/examples/README.jl @@ -38,4 +38,5 @@ julia> Pkg.add("ITensorPkgSkeleton") # ## Examples using ITensorPkgSkeleton: ITensorPkgSkeleton +ITensorPkgSkeleton.generate("MyPackage.jl") # Examples go here. From a9d42ed5294e950730e0f4793c589a4552c96f72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Gauth=C3=A9?= Date: Fri, 24 Jan 2025 19:26:50 -0500 Subject: [PATCH 2/2] remove .jl --- README.md | 2 +- examples/README.jl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 970e59d..b09addc 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ julia> Pkg.add("ITensorPkgSkeleton") ````julia using ITensorPkgSkeleton: ITensorPkgSkeleton -ITensorPkgSkeleton.generate("MyPackage.jl") +ITensorPkgSkeleton.generate("MyPackage") ```` Examples go here. diff --git a/examples/README.jl b/examples/README.jl index ca36b65..a5e5df9 100644 --- a/examples/README.jl +++ b/examples/README.jl @@ -1,5 +1,5 @@ # # ITensorPkgSkeleton.jl -# +# # [![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://ITensor.github.io/ITensorPkgSkeleton.jl/stable/) # [![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://ITensor.github.io/ITensorPkgSkeleton.jl/dev/) # [![Build Status](https://github.com/ITensor/ITensorPkgSkeleton.jl/actions/workflows/Tests.yml/badge.svg?branch=main)](https://github.com/ITensor/ITensorPkgSkeleton.jl/actions/workflows/Tests.yml?query=branch%3Amain) @@ -38,5 +38,5 @@ julia> Pkg.add("ITensorPkgSkeleton") # ## Examples using ITensorPkgSkeleton: ITensorPkgSkeleton -ITensorPkgSkeleton.generate("MyPackage.jl") +ITensorPkgSkeleton.generate("MyPackage") # Examples go here.