Skip to content

Commit

Permalink
Release 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jbtrystram committed Nov 17, 2022
1 parent 4bf95e1 commit 0f6ba29
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Version 0.11

## New features
- Added a `drg apply` subcommand. It's tailored to feel like the `kubectl apply` we are used to.
- Added support for PSK credentials (see drogue-cloud 0.11 release.

## Misc. changes
- updated CI runners

## Dependencies
- Updated to colored_json 3
- updated to drogue-client 0.11

# Version 0.10.2

## Misc. changes
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drg"
version = "0.10.2"
version = "0.11.0"
authors = ["Jean-Baptiste Trystram <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -13,7 +13,7 @@ homepage = "https://drogue.io/"
categories = ["command-line-utilities"]

[dependencies]
drogue-client = "0.11.0-alpha.1"
drogue-client = "0.11"
async-trait = "0.1"
tokio = { version = "1", features = ["full"] }

Expand Down Expand Up @@ -69,5 +69,5 @@ test-utils = { path = "test-utils" }
uuid = {version= "1.0", features = ["v4"]}

[patch.crates-io]
drogue-client = { git = "https://github.com/drogue-iot/drogue-client", rev = "3e0fdb91305803c51946f8a818e4f053ab88c2c3" } # FIXME: awaiting release
#drogue-client = { git = "https://github.com/drogue-iot/drogue-client", rev = "3e0fdb91305803c51946f8a818e4f053ab88c2c3" } # FIXME: awaiting release
#drogue-client = { path = "../drogue-client" }
2 changes: 1 addition & 1 deletion src/util/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ use tempfile::Builder;
use url::Url;

pub const VERSION: &str = crate_version!();
pub const COMPATIBLE_DROGUE_VERSION: &str = "0.10";
pub const COMPATIBLE_DROGUE_VERSION: &str = "0.11";

pub fn show_json(payload: &Value) {
write_colored_json(payload, &mut stdout().lock()).ok();
Expand Down

0 comments on commit 0f6ba29

Please sign in to comment.