Skip to content

Commit 69519af

Browse files
committed
setup for v0.1.1 release
Add changelog, update version numbers. Signed-off-by: Andrew Stoycos <[email protected]>
1 parent 2b8d2e4 commit 69519af

File tree

4 files changed

+27
-6
lines changed

4 files changed

+27
-6
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
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.

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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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)