Skip to content

Commit

Permalink
Bump version to 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BastianBlokland committed Aug 16, 2019
1 parent 8d7f088 commit 6bc0068
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion example/Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<None Update="brain.tree.json" CopyToOutputDirectory="PreserveNewest" />

<!-- Tools -->
<DotNetCliToolReference Include="TypedTree.Generator.Cli" Version="1.1.*" />
<DotNetCliToolReference Include="TypedTree.Generator.Cli" Version="1.2.*" />

</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<!-- Major.Minor adjust manually -->
<PropertyGroup>
<VersionPrefix>1.2</VersionPrefix>
<VersionPrefix>2.0</VersionPrefix>
</PropertyGroup>

<!-- Automatically set suffix info based on environment args (if availble) -->
Expand Down
2 changes: 1 addition & 1 deletion src/TypedTree.Generator.Cli/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Can be used to generate scheme files for the [**TypedTree-Editor**](https://bast

Add a reference to the cli-tool to a `ItemGroup` section your of your csproj.
```xml
<DotNetCliToolReference Include="TypedTree.Generator.Cli" Version="1.1.*" />
<DotNetCliToolReference Include="TypedTree.Generator.Cli" Version="2.0.*" />
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions src/TypedTree.Generator.Core/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ Can be used for more complex integration into a build pipeline, for simple use-c
There are two ways to add the nuget package:
1. Run:
```bash
dotnet add package TypedTree.Generator.Core --version 1.1.*
dotnet add package TypedTree.Generator.Core --version 2.0.*
```
2. Add the following to a `ItemGroup` section of your csproj:
```xml
<PackageReference Include="TypedTree.Generator.Core" Version="1.1.*" />
<PackageReference Include="TypedTree.Generator.Core" Version="2.0.*" />
```

## Usage
Expand Down

0 comments on commit 6bc0068

Please sign in to comment.