Skip to content

Commit 61b8a75

Browse files
authored
Update versions for 0.26.0 (#1459)
* Deprecate `lookup-path` option and updated relevant documentation Lookup in path is now the default for all plugins. This option will be removed eventually in a future version, when path lookup is enabled uncoditinally and can't be turned of. * Update versions for 0.26.0
1 parent 26e0efe commit 61b8a75

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

CHANGELOG.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
|
1212
| https://github.com/knative/client/pull/[#]
1313
////
14-
## v0.26.0 (2021-09-21)
14+
## v0.26.0 (2021-09-22)
1515
[cols="1,10,3", options="header", width="100%"]
1616
|===
1717
| | Description | PR

pkg/kn/commands/version/version.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ var GitRevision string
3131
// update this var as we add more deps
3232
var apiVersions = map[string][]string{
3333
"serving": {
34-
"serving.knative.dev/v1 (knative-serving v0.25.0)",
34+
"serving.knative.dev/v1 (knative-serving v0.26.0)",
3535
},
3636
"eventing": {
37-
"sources.knative.dev/v1 (knative-eventing v0.25.0)",
38-
"eventing.knative.dev/v1 (knative-eventing v0.25.0)",
37+
"sources.knative.dev/v1 (knative-eventing v0.26.0)",
38+
"eventing.knative.dev/v1 (knative-eventing v0.26.0)",
3939
},
4040
}
4141

pkg/kn/config/config_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ func TestBootstrapConfig(t *testing.T) {
2929
configYaml := `
3030
plugins:
3131
directory: /tmp
32-
path-lookup: true
3332
eventing:
3433
sink-mappings:
3534
- prefix: service

test/presubmit-integration-tests-latest-release.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# This script is used in Knative/test-infra as a custom prow job to run the
1818
# integration tests against Knative Serving / Eventing of a specific version.
1919

20-
export KNATIVE_SERVING_VERSION="0.25.0"
21-
export KNATIVE_EVENTING_VERSION="0.25.0"
20+
export KNATIVE_SERVING_VERSION="0.26.0"
21+
export KNATIVE_EVENTING_VERSION="0.26.0"
2222

2323
$(dirname $0)/presubmit-tests.sh --integration-tests

0 commit comments

Comments
 (0)