Skip to content

Commit 64aa20f

Browse files
authored
Merge pull request #135 from astoycos/v0.1.1-release
setup for v0.1.1 release
2 parents 2b8d2e4 + 711ffc2 commit 64aa20f

5 files changed

+33
-8
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Table of Contents
44

55
- [v0.1.0](#v010)
6+
- [v0.1.1](#v011)
67

78
# v0.1.0
89

@@ -15,3 +16,23 @@ main resources geared towards cluster admins:
1516
- BaselineAdminNetworkPolicy
1617

1718
Please check out the [network-policy-api website](https://network-policy-api.sigs.k8s.io/) for more information.
19+
20+
# v0.1.1
21+
22+
API Version: v1alpha1
23+
24+
This is a patch release of the network-policy-api. It includes two
25+
main resources geared towards cluster admins:
26+
27+
- AdminNetworkPolicy
28+
- BaselineAdminNetworkPolicy
29+
30+
Additionally it includes many conformance test updates and fixes:
31+
32+
- Ingress/Egress Traffic conformance for TCP/UDP/SCTP
33+
- Movement of base testing yamls
34+
- Variable renaming and comment improvements
35+
- Increased default timeout
36+
- Removal of K8s.io/kubernetes dependency
37+
38+
Please check out the [network-policy-api website](https://network-policy-api.sigs.k8s.io/) for more information.

RELEASE.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ For a **PATCH** release:
5252
Github's [release][release] page.
5353
- Run the `make build-install-yaml` command which will generate install files in the `release/` directory.
5454
Attach these files to the Github release.
55-
- Update the `README.md` and `site-src/guides/index.md` files to point links and examples to the new release.
55+
- Update the website files to point links and examples to the new release (simply `grep` for previous version).
56+
- Write a changelog for the new release in the [changelog readme](./CHANGELOG.md).
57+
- Make the new-release from the [releases page](https://github.com/kubernetes-sigs/network-policy-api/releases) with the new changelog and attach the `install.yaml`.
5658

5759
For a **MAJOR** or **MINOR** release:
5860

@@ -64,7 +66,9 @@ For a **MAJOR** or **MINOR** release:
6466
Github's [release][release] page.
6567
- Run the `make build-install-yaml` command which will generate install files in the `release/` directory.
6668
Attach these files to the Github release.
67-
- Update the `README.md` and `site-src/guides/index.md` files to point links and examples to the new release.
69+
- Update the website files to point links and examples to the new release (simply `grep` for previous version).
70+
- Write a changelog for the new release in the [changelog readme](./CHANGELOG.md).
71+
- Make the new-release from the [releases page](https://github.com/kubernetes-sigs/network-policy-api/releases) with the new changelog and attach the `install.yaml`.
6872

6973
For an **RC** release:
7074

config/crd/policy.networking.k8s.io_adminnetworkpolicies.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/network-policy-api/pull/106
6-
policy.networking.k8s.io/bundle-version: v0.1.0
5+
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/network-policy-api/pull/135
6+
policy.networking.k8s.io/bundle-version: v0.1.1
77
creationTimestamp: null
88
name: adminnetworkpolicies.policy.networking.k8s.io
99
spec:

config/crd/policy.networking.k8s.io_baselineadminnetworkpolicies.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/network-policy-api/pull/106
6-
policy.networking.k8s.io/bundle-version: v0.1.0
5+
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/network-policy-api/pull/135
6+
policy.networking.k8s.io/bundle-version: v0.1.1
77
creationTimestamp: null
88
name: baselineadminnetworkpolicies.policy.networking.k8s.io
99
spec:

pkg/generator/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ const (
2929
bundleVersionAnnotation = "policy.networking.k8s.io/bundle-version"
3030

3131
// These values must be updated during the release process
32-
bundleVersion = "v0.1.0"
33-
approvalLink = "https://github.com/kubernetes-sigs/network-policy-api/pull/106"
32+
bundleVersion = "v0.1.1"
33+
approvalLink = "https://github.com/kubernetes-sigs/network-policy-api/pull/135"
3434
)
3535

3636
// This generation code is largely copied from

0 commit comments

Comments
 (0)