Skip to content

Commit 275cd56

Browse files
committed
Prepare for first release
1 parent fa6cc85 commit 275cd56

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

BoincRpc/BoincRpc.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<PackageTags>boinc rpc</PackageTags>
1111
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
1212
<Description>An asynchronous .NET Core implementation of the BOINC GUI RPC protocol.</Description>
13+
<PackageReleaseNotes>First stable release.</PackageReleaseNotes>
1314
</PropertyGroup>
1415

1516
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [1.0.0] - 2021-08-22
10+
First stable release.
11+
12+
[Unreleased]: https://github.com/chausner/BoincRpc/compare/v1.0.0...HEAD
13+
[1.0.0]: https://github.com/chausner/BoincRpc/releases/tag/v1.0.0

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ An asynchronous .NET Core implementation of the [BOINC GUI RPC protocol](http://
33

44
The implementation is up-to-date as of BOINC 7.18.1 and (almost) all RPC structures and commands are fully supported.
55

6+
[![NuGet](https://img.shields.io/nuget/v/BoincRpc.svg)](https://www.nuget.org/packages/BoincRpc/)
7+
[![license](https://img.shields.io/github/license/chausner/BoincRpc.svg)](https://github.com/chausner/BoincRpc/blob/master/LICENSE)
8+
69
Usage
710
-----
811
RPC client usage should be largely self-explanatory. For information on the RPC commands, see the [BOINC wiki](http://boinc.berkeley.edu/trac/wiki/GuiRpc).
@@ -27,4 +30,4 @@ using (RpcClient rpcClient = new RpcClient())
2730

2831
License
2932
-------
30-
LGPL 3, see LICENSE
33+
LGPL 3, see [LICENSE](LICENSE)

0 commit comments

Comments
 (0)