Skip to content
This repository was archived by the owner on Apr 27, 2019. It is now read-only.

Commit 7793592

Browse files
0.7.0
1 parent a4b2ec0 commit 7793592

File tree

6 files changed

+13
-23
lines changed

6 files changed

+13
-23
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
an arbitrary period of time.
3939
* Signal WAN address translation and add the ability to look up
4040
the WAN and LAN addresses if address translation is being used.
41+
* Added Operator API to allow Raft editing.
4142

4243
## 2016-08-03
4344
* Added the ability to set `LockOpts.LockRetryTime`. Thanks @pfrejlich!

Consul.Test/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"xunit": "2.1.0",
66
"dotnet-test-xunit": "1.0.0-rc2-build10025",
77
"Xunit.SkippableFact": "1.2.14",
8-
"Consul": "0.7.0-rc2"
8+
"Consul": "0.7.0"
99
},
1010
"frameworks": {
1111
"netcoreapp1.0": {

Consul.Test/test_config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
"acl_datacenter": "dc1",
77
"acl_master_token": "yep",
88
"acl_default_policy": "allow",
9-
"leave_on_terminate": true,
10-
"telemetry": { "disable_hostname": true }
9+
"leave_on_terminate": true
1110
}

Consul/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.7.0-rc2",
2+
"version": "0.7.0",
33
"dependencies": {},
44
"frameworks": {
55
"netstandard1.3": {

README.md

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![Build Status](https://ci.appveyor.com/api/projects/status/github/PlayFab/consuldotnet?branch=master&svg=true)](https://ci.appveyor.com/project/highlyunavailable/consuldotnet)
44

5-
* Consul API: [v0.6.4](https://github.com/hashicorp/consul/tree/v0.6.4/api)
6-
* .NET version: >= 4.5
5+
* Consul API: [v0.7.0](https://github.com/hashicorp/consul/tree/v0.7.0/api)
6+
* .NET: >= 4.5 - .NET Core: >= 1.0.0
77

88
Consul.NET is a .NET port of the Go Consul API, but reworked to use .NET
99
idioms such as Tasks/CancellationTokens instead of Goroutines/Channels.
@@ -12,13 +12,6 @@ API](https://www.consul.io/docs/agent/http.html), but this API does have
1212
additional functionality that is provided in the Go API, like Locks and
1313
Semaphores.
1414

15-
## ⚠️WARNING⚠️
16-
17-
If you are upgrading from Consul.NET 0.5.x or below, the entire API has
18-
been re-written to be `async` as of 0.6.0. See the
19-
[Changelog](https://github.com/PlayFab/consuldotnet/blob/master/CHANGELOG.md)
20-
for more information.
21-
2215
## Example
2316

2417
You'll need a running Consul Server on your local machine, or a Consul
@@ -170,13 +163,10 @@ Semaphore is used to implement a distributed semaphore using the Consul
170163
KV primitives. It is an implementaiton of the [Consul Semaphore
171164
](https://www.consul.io/docs/guides/semaphore.html) guide.
172165

173-
## Using with Mono/DNXCore
174-
175-
This package should work correctly with Mono. It compiles and runs with
176-
Mono 4.2.3, but if you have any issues using the Nuget package or
177-
compiling this code with Mono, please file a Github issue with details
178-
of the problem.
166+
## Using with .NET Core and Mono
179167

180-
This package is not usable on DNXCore due to a problem with [large
181-
integer support](https://github.com/JamesNK/Newtonsoft.Json/issues/838)
182-
in Json.NET. It should work fine on DNX451 targets though.
168+
Both .NET 4.5+ and .NET Core 1.0+ are fully supported. Mono is supported on a
169+
best-effort basis. It should compile and run happily on Mono but this is not as
170+
heavily tested as Microsoft .NET stacks. If you have any issues using the Nuget
171+
package or compiling this code with .NET, .NET Core, or Mono, please file a
172+
Github issue with details of the problem.

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ assembly_info:
1212
assembly_file_version: $(APPVEYOR_BUILD_VERSION)
1313
assembly_informational_version: $(APPVEYOR_BUILD_VERSION)
1414
environment:
15-
CONSUL_VERSION: 0.7.0-rc2
15+
CONSUL_VERSION: 0.7.0
1616
CLI_VERSION: Latest
1717
install:
1818
- cinst: 7zip.commandline

0 commit comments

Comments
 (0)