From 275cd56fdbf545d5be2fcaa57c9dd9bf35a3ac16 Mon Sep 17 00:00:00 2001 From: Christoph Hausner Date: Sun, 22 Aug 2021 23:10:23 +0200 Subject: [PATCH] Prepare for first release --- BoincRpc/BoincRpc.csproj | 1 + CHANGELOG.md | 13 +++++++++++++ README.md | 5 ++++- 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/BoincRpc/BoincRpc.csproj b/BoincRpc/BoincRpc.csproj index fc01868..fc70442 100644 --- a/BoincRpc/BoincRpc.csproj +++ b/BoincRpc/BoincRpc.csproj @@ -10,6 +10,7 @@ boinc rpc LGPL-3.0-or-later An asynchronous .NET Core implementation of the BOINC GUI RPC protocol. + First stable release. diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a782ec3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [1.0.0] - 2021-08-22 +First stable release. + +[Unreleased]: https://github.com/chausner/BoincRpc/compare/v1.0.0...HEAD +[1.0.0]: https://github.com/chausner/BoincRpc/releases/tag/v1.0.0 \ No newline at end of file diff --git a/README.md b/README.md index d4f2f84..83eadef 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,9 @@ An asynchronous .NET Core implementation of the [BOINC GUI RPC protocol](http:// The implementation is up-to-date as of BOINC 7.18.1 and (almost) all RPC structures and commands are fully supported. +[![NuGet](https://img.shields.io/nuget/v/BoincRpc.svg)](https://www.nuget.org/packages/BoincRpc/) +[![license](https://img.shields.io/github/license/chausner/BoincRpc.svg)](https://github.com/chausner/BoincRpc/blob/master/LICENSE) + Usage ----- 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()) License ------- -LGPL 3, see LICENSE +LGPL 3, see [LICENSE](LICENSE)