Skip to content

Commit 02a2618

Browse files
committed
Update README for 2.1.0
1 parent e2ae220 commit 02a2618

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
version: 2.1.0-rc.{build}+{branch}
1+
version: 2.1.0-rtm.{build}
22
init:
33
- git config --global core.autocrlf input
44
clone_depth: 1
55
branches:
66
only:
77
- master
8-
- dev
98
- appveyor
109
- /^feature\/.*/
1110
build_script:

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ $ dotnet add package McMaster.Extensions.CommandLineUtils
2727
```
2828
```xml
2929
<ItemGroup>
30-
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.0.1" />
30+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.1.0" />
3131
</ItemGroup>
3232
```
3333

@@ -46,8 +46,6 @@ See [samples/](./samples/) for more examples, such as:
4646

4747
### Attribute API
4848

49-
_(This API was added in 2.1.0.)_
50-
5149
```c#
5250
using System;
5351
using McMaster.Extensions.CommandLineUtils;

version.props

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<Project>
22
<PropertyGroup>
33
<VersionPrefix>2.1.0</VersionPrefix>
4-
<!-- <VersionSuffix>rc</VersionSuffix> -->
4+
<VersionSuffix>rtm</VersionSuffix>
55
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
6+
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' == 'rtm'">$(VersionPrefix)</PackageVersion>
67

78
<BuildNumber Condition=" '$(BuildNumber)' == '' ">$(APPVEYOR_BUILD_NUMBER)</BuildNumber>
89
<BuildNumber Condition=" '$(BuildNumber)' == '' ">0</BuildNumber>

0 commit comments

Comments
 (0)