Skip to content

Commit

Permalink
chore(release): release version 0.8.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Oct 22, 2021
1 parent b08086a commit 5a2f789
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.8.0 [unreleased]
## 0.8.0 [2021-10-22]

### Features
1. [#39](https://github.com/influxdata/influxdb-client-swift/pull/39): Add a `PingAPI to check status of OSS and Cloud instance.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ import PackageDescription
let package = Package(
name: "MyPackage",
dependencies: [
.package(name: "influxdb-client-swift", url: "https://github.com/influxdata/influxdb-client-swift", from: "0.7.0"),
.package(name: "influxdb-client-swift", url: "https://github.com/influxdata/influxdb-client-swift", from: "0.8.0"),
],
targets: [
.target(name: "MyModule", dependencies: [
Expand Down
4 changes: 2 additions & 2 deletions Sources/InfluxDBSwift/InfluxDBClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ import FoundationNetworking
/// ````
public class InfluxDBClient {
/// Version of client.
public static var version: String = "0.8.0dev"
public static var version: String = "0.8.0"
/// InfluxDB host and port.
public let url: String
/// Authentication token.
internal let token: String
/// The options to configre client.
/// The options to configure client.
internal let options: InfluxDBOptions
/// Shared URLSession across the client.
public let session: URLSession
Expand Down

0 comments on commit 5a2f789

Please sign in to comment.