Skip to content

Commit

Permalink
Merge pull request fussybeaver#174 from fussybeaver/ND-release-0.11.1
Browse files Browse the repository at this point in the history
Release 0.11.1
  • Loading branch information
fussybeaver authored Dec 6, 2021
2 parents d97027a + e7b3a75 commit 15e3605
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
test_ssl:
docker:
- image: docker:20.10.9
- image: docker:20.10.11
steps:
- checkout
- setup_remote_docker
Expand All @@ -15,7 +15,7 @@ jobs:
- run: docker run -ti -e DOCKER_CERT_PATH=/certs -e DOCKER_HOST='tcp://test.example.com:2376' --volumes-from certs --rm --link test-docker-daemon:docker bollard cargo test --features test_ssl -- --test test_version_ssl
test_http:
docker:
- image: docker:20.10.9
- image: docker:20.10.11
steps:
- checkout
- setup_remote_docker
Expand All @@ -24,31 +24,31 @@ jobs:
- run: docker run -ti -e DOCKER_HOST='tcp://test.example.com:2375' --rm --link test-docker-daemon:docker bollard cargo test --features test_http -- --test test_version_http
test_unix:
docker:
- image: docker:20.10.9
- image: docker:20.10.11
steps:
- checkout
- setup_remote_docker
- run: docker build -t bollard .
- run: dockerfiles/bin/run_integration_tests.sh
test_doc:
docker:
- image: docker:20.10.9
- image: docker:20.10.11
steps:
- checkout
- setup_remote_docker
- run: docker build -t bollard .
- run: docker run -ti --rm bollard cargo test --target x86_64-unknown-linux-gnu --doc
test_clippy:
docker:
- image: docker:20.10.9
- image: docker:20.10.11
steps:
- checkout
- setup_remote_docker
- run: docker build -t bollard .
- run: docker run -ti --rm bollard bash -c "rustup component add clippy && cargo clippy -- -Dwarnings -Aclippy::upper_case_acronyms"
test_audit:
docker:
- image: docker:20.10.9
- image: docker:20.10.11
steps:
- checkout
- setup_remote_docker
Expand Down
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "maven"
directory: "/codegen"
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bollard"
description = "An asynchronous Docker daemon API"
version = "0.11.0"
version = "0.11.1"
authors = [ "Bollard contributors" ]
license = "Apache-2.0"
homepage = "https://github.com/fussybeaver/bollard"
Expand Down
5 changes: 5 additions & 0 deletions codegen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
</plugins>
</build>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>io.swagger</groupId>
Expand Down

0 comments on commit 15e3605

Please sign in to comment.