Skip to content

Commit 5a2f789

Browse files
committed
chore(release): release version 0.8.0 [skip ci]
1 parent b08086a commit 5a2f789

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.8.0 [unreleased]
1+
## 0.8.0 [2021-10-22]
22

33
### Features
44
1. [#39](https://github.com/influxdata/influxdb-client-swift/pull/39): Add a `PingAPI to check status of OSS and Cloud instance.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ import PackageDescription
7979
let package = Package(
8080
name: "MyPackage",
8181
dependencies: [
82-
.package(name: "influxdb-client-swift", url: "https://github.com/influxdata/influxdb-client-swift", from: "0.7.0"),
82+
.package(name: "influxdb-client-swift", url: "https://github.com/influxdata/influxdb-client-swift", from: "0.8.0"),
8383
],
8484
targets: [
8585
.target(name: "MyModule", dependencies: [

Sources/InfluxDBSwift/InfluxDBClient.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ import FoundationNetworking
2424
/// ````
2525
public class InfluxDBClient {
2626
/// Version of client.
27-
public static var version: String = "0.8.0dev"
27+
public static var version: String = "0.8.0"
2828
/// InfluxDB host and port.
2929
public let url: String
3030
/// Authentication token.
3131
internal let token: String
32-
/// The options to configre client.
32+
/// The options to configure client.
3333
internal let options: InfluxDBOptions
3434
/// Shared URLSession across the client.
3535
public let session: URLSession

0 commit comments

Comments
 (0)