Skip to content

Commit 4bb877d

Browse files
committed
Release 1.1.0
1 parent de93ada commit 4bb877d

File tree

4 files changed

+24
-8
lines changed

4 files changed

+24
-8
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ Download development version from [myget](https://www.myget.org/feed/appvey/pack
5353
- Update project build number
5454
- Delete project build cache
5555
- Delete project
56-
57-
- support reading appveyor token from keyboard, external file, environment variables or piping the token.
56+
- Implement Users Rest API
57+
- Support reading Appveyor token from keyboard, external file, environment variables, Windows Manager Credential (Windows Users Only) or piping the token.
5858
- Display result in a tabular form.
5959
- Show summary of response of important information.
6060
- Allow deleting the Cancelled or failed builds in history command which is confirmed by the user.
@@ -65,7 +65,12 @@ Download development version from [myget](https://www.myget.org/feed/appvey/pack
6565
- Using response file (one or more) which contain options and arguments or the value of any option like token. The response file argument start with '@'.
6666
- Save the output response json to external files.
6767
- Save the screen output to external file.
68+
- Can run in what-if mode to show the result without executing the command.
6869
- Support Control-C to stop program with grace stop.
70+
- Support for Windows, Linux and MacOs.
71+
- Support for .Net 8.0 and above.
72+
- The package is signed and verified.
73+
6974
----------
7075

7176
## Install and Usage
@@ -97,6 +102,9 @@ Run the commands as described in [wiki pages](https://github.com/moh-hassan/appv
97102

98103
Note: help can be displayed by any of: -? or -h or --help
99104

105+
## Give a Star! :star:
106+
107+
If you are using this project, please show your support by giving this project a star!. Thanks!
100108

101109
------
102110
## Documentation
@@ -118,9 +126,6 @@ All programs or packages will not transfer any information to other networked sy
118126

119127
## Acknowledgements:
120128

121-
**Thank you [JetBrains](https://www.jetbrains.com "JetBrain") for [Resharper](https://www.jetbrains.com/resharper/ "Resharper") open source license**
122-
<img src="src/art/jb_beam.png" alt="jetbrains" width="200"/>
123-
124129
**Thank you [SignPath](https://signpath.io?utm_source=foundation&utm_medium=github&utm_campaign=odata2poco) for free code signing.**
125130

126131
<img src="src/art/signpath.jpg" alt="signpath" width="200"/>

ReleaseNotes.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
# appvey
22
# Appveyor cli tool
33

4-
54
## Version 1.1.0
5+
**Release Date:** 2025-01-08
6+
- Add what-if option to all commands.
7+
- Add Examples to help.
8+
- Add Users command.
9+
- Add http command.
10+
- Support Windows Credential Manager.
11+
- Sign packages by signpath sign-release certificate.
12+
13+
14+
## Version 1.1.0-dev
615
**Release Date:** 2024-12-30
716
- Add Users command.
817
- Add http command.

appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,7 @@ deploy:
7272
- provider: Webhook
7373
url: https://app.signpath.io/API/v1/%SIGNPATH_ORGANIZATION_ID%/Integrations/AppVeyor?ProjectSlug=%SIGNPATH_PROJECT_SLUG%&SigningPolicySlug=%SIGNPATH_SIGNING_POLICY_SLUG%&ArtifactConfigurationSlug=%ARTIFACT_CONFIGURATION_SLUG%
7474
authorization: 'Bearer %SIGNPATH_CI_USER_TOKEN%'
75+
on:
76+
APPVEYOR_REPO_TAG: true
7577

7678

src/Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<LangVersion>12.0</LangVersion>
4-
<Version>1.1.0-dev</Version>
4+
<Version>1.1.0</Version>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<SolutionDir Condition="'$(SolutionDir)'==''">$(MSBuildThisFileDirectory)</SolutionDir>
77
<PackageOutputPath>$(SolutionDir)..\nupkg</PackageOutputPath>
@@ -15,7 +15,7 @@
1515
</Description>
1616
<IsTestProject>$(MSBuildProjectName.Contains('Test'))</IsTestProject>
1717
<Company>appvey</Company>
18-
<PackageReleaseNotes>https://github.com/moh-hassan/appvey/ReleaseNotes.md </PackageReleaseNotes>
18+
<PackageReleaseNotes>https://github.com/moh-hassan/appvey/blob/main/ReleaseNotes.md</PackageReleaseNotes>
1919
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
2020
<IncludeSourceRevisionInInformationalVersion>true</IncludeSourceRevisionInInformationalVersion>
2121
<PackageTags>appveyor;appvey;restapi;https;commandline;csharp;ci/cd;automation;devops;continuousintegration;appveyorapi</PackageTags>

0 commit comments

Comments
 (0)