Skip to content

Commit cfaa01e

Browse files
committed
Prepare release 0.1.0-alpha6
1 parent 7abae8e commit cfaa01e

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ For ClojureCLR on .NET 6 and later.
66

77
## Releases
88

9-
The current release is 0.0.1-alpha5.
9+
The current release is 0.1.0-alpha6.
1010

1111

1212
## Installation
@@ -17,14 +17,14 @@ Prerequisite: ClojureCLR must be installed as a tool. See [Getting started (Cl
1717
To install as a global tool:
1818

1919
```
20-
dotnet tool install --global Clojure.Cljr --version 0.1.0-alpha5
20+
dotnet tool install --global Clojure.Cljr --version 0.1.0-alpha6
2121
```
2222

2323
To install as a local tool:
2424

2525
```
2626
dotnet new tool-manifest # if you are setting up this repo
27-
dotnet tool install --local Clojure.Cljr --version 0.1.0-alpha5
27+
dotnet tool install --local Clojure.Cljr --version 0.1.0-alpha6
2828
```
2929

3030
For other installation approaches, check out the [Clojure.Cljr Nuget page](https://www.nuget.org/packages/Clojure.Cljr/).

src/dotnet/Cljr/Cljr.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
5+
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<PackAsTool>true</PackAsTool>
99
<ToolCommandName>cljr</ToolCommandName>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<PackageOutputPath>./nupkg</PackageOutputPath>
12-
<Version>0.1.0-alpha5</Version>
12+
<Version>0.1.0-alpha6</Version>
1313
<PackageId>Clojure.$(AssemblyName)</PackageId>
1414
<Authors>ClojureCLR contributors</Authors>
1515
<Description>The deps.edn-powered CLI tool for ClojureCLR.</Description>
@@ -38,14 +38,14 @@
3838
<None Remove="clojure\tools\deps\specs.cljc" />
3939
<None Remove="clojure\tools\deps\tool.cljc" />
4040
<None Remove="clojure\tools\deps\tree.cljc" />
41-
<None Remove="clojure\tools\deps\util\concurrent.clj" />
4241
<None Remove="clojure\tools\deps\util\concurrent.cljr" />
4342
<None Remove="clojure\tools\deps\util\dir.cljc" />
4443
<None Remove="clojure\tools\deps\util\io.cljc" />
4544
<None Remove="clojure\tools\deps\util\session.cljc" />
4645
<None Remove="clojure\tools\gitlibs.cljc" />
4746
<None Remove="clojure\tools\gitlibs\config.cljr" />
4847
<None Remove="clojure\tools\gitlibs\impl.cljr" />
48+
<None Remove="deps.edn" />
4949
<None Remove="example-deps.edn" />
5050
<None Remove="tools\run-clojure-main.ps1" />
5151
<None Remove="tools\run-clojure-main.sh" />
@@ -103,9 +103,6 @@
103103
<Content Include="clojure\tools\deps\tree.cljc">
104104
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
105105
</Content>
106-
<Content Include="clojure\tools\deps\util\concurrent.clj">
107-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
108-
</Content>
109106
<Content Include="clojure\tools\deps\util\concurrent.cljr">
110107
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
111108
</Content>
@@ -127,6 +124,9 @@
127124
<Content Include="clojure\tools\gitlibs\impl.cljr">
128125
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
129126
</Content>
127+
<Content Include="deps.edn">
128+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
129+
</Content>
130130
<Content Include="example-deps.edn">
131131
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
132132
</Content>

0 commit comments

Comments
 (0)