Skip to content

Commit

Permalink
Merge pull request #298 from Random-Liu/prepare-beta-1-release
Browse files Browse the repository at this point in the history
Prepare for v1.0.0-beta.1 release.
  • Loading branch information
Random-Liu committed May 3, 2018
2 parents 49847ed + 672e561 commit 585e558
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
27 changes: 22 additions & 5 deletions CHANGELOG.md
@@ -1,11 +1,11 @@
<!-- TOC -->

- [v1.0.0-beta.1](#v100-beta1)
- [v1.0.0-beta.0](#v100-beta0)
- [CRI validation testing (critest)](#cri-validation-testing-critest)
- [CRI CLI (crictl)](#cri-cli-crictl)
- [CRI validation testing (critest)](#cri-validation-testing-critest)
- [CRI CLI (crictl)](#cri-cli-crictl)
- [v1.0.0-alpha.0](#v100-alpha0)
- [CRI validation testing (critest)](#cri-validation-testing-critest-1)
- [CRI CLI (crictl)](#cri-cli-crictl-1)
- [CRI validation testing (critest)](#cri-validation-testing-critest-1)
- [CRI CLI (crictl)](#cri-cli-crictl-1)
- [v0.2](#v02)
- [CRI validation testing (critest)](#cri-validation-testing-critest-2)
- [CRI CLI (crictl)](#cri-cli-crictl-2)
Expand All @@ -17,6 +17,23 @@
- [Documentation](#documentation)

<!-- /TOC -->
# v1.0.0-beta.1

cri-tools v1.0.0-beta.1 mainly focused on critest coverage improvement, and bug fixes.

### CRI validation testing (critest)

- [#282](https://github.com/kubernetes-incubator/cri-tools/pull/282) Add RunAsGroup test. The test `runtime should return error if RunAsGroup is set without RunAsUser` only works with Kubernetes 1.11+.
- [#289](https://github.com/kubernetes-incubator/cri-tools/pull/289) Add host network pod portforward test.
- [#290](https://github.com/kubernetes-incubator/cri-tools/pull/290) Use busybox:1.28 instead of busybox:1.26 in the test to better support multi-arch.
- [#296](https://github.com/kubernetes-incubator/cri-tools/pull/296) Make `critest` binary statically linked.

### CRI CLI (crictl)

- [#278](https://github.com/kubernetes-incubator/cri-tools/pull/278) Remove "sandbox" from `crictl` command description.
- [#279](https://github.com/kubernetes-incubator/cri-tools/pull/279) Remove `oom-score-adj` flag from `crictl update` because it is not supported by `runc`.
- [#291](https://github.com/kubernetes-incubator/cri-tools/pull/291) Fix a bug that `crictl` generates a log file in `/tmp` directory each run. This can potentially fill `/tmp` directory.
- [#296](https://github.com/kubernetes-incubator/cri-tools/pull/296) Make `crictl` binary statically linked.

# v1.0.0-beta.0

Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -23,7 +23,8 @@ Version matrix:

| Kubernetes Version | cri-tools Version | cri-tools branch |
|--------------------|-------------------|------------------|
| 1.10.X | v1.0.0-beta.0 | master |
| 1.11.X | v1.0.0-beta.1 | master |
| 1.10.X | v1.0.0-beta.0 | release-1.0 |
| 1.9.X | v1.0.0-alpha.0 | release-1.9 |
| 1.8.X | v0.2 | release-1.8 |
| 1.7.X | v0.1 | release-1.7 |
Expand Down
2 changes: 1 addition & 1 deletion cmd/crictl/main.go
Expand Up @@ -96,7 +96,7 @@ func main() {
app := cli.NewApp()
app.Name = "crictl"
app.Usage = "client for CRI"
app.Version = "1.0.0-beta.0"
app.Version = "1.0.0-beta.1"

app.Commands = []cli.Command{
runtimeAttachCommand,
Expand Down
2 changes: 1 addition & 1 deletion cmd/critest/cri_test.go
Expand Up @@ -42,7 +42,7 @@ const (
benchmarkFlag = "benchmark"
versionFlag = "version"

criTestVersion = "1.0.0-beta.0"
criTestVersion = "1.0.0-beta.1"
)

var (
Expand Down

0 comments on commit 585e558

Please sign in to comment.