Skip to content

Commit

Permalink
Update versions for 0.26.0 (#1459)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
rhuss authored Sep 22, 2021
1 parent 26e0efe commit 61b8a75
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
|
| https://github.com/knative/client/pull/[#]
////
## v0.26.0 (2021-09-21)
## v0.26.0 (2021-09-22)
[cols="1,10,3", options="header", width="100%"]
|===
| | Description | PR
Expand Down
6 changes: 3 additions & 3 deletions pkg/kn/commands/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ var GitRevision string
// update this var as we add more deps
var apiVersions = map[string][]string{
"serving": {
"serving.knative.dev/v1 (knative-serving v0.25.0)",
"serving.knative.dev/v1 (knative-serving v0.26.0)",
},
"eventing": {
"sources.knative.dev/v1 (knative-eventing v0.25.0)",
"eventing.knative.dev/v1 (knative-eventing v0.25.0)",
"sources.knative.dev/v1 (knative-eventing v0.26.0)",
"eventing.knative.dev/v1 (knative-eventing v0.26.0)",
},
}

Expand Down
1 change: 0 additions & 1 deletion pkg/kn/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ func TestBootstrapConfig(t *testing.T) {
configYaml := `
plugins:
directory: /tmp
path-lookup: true
eventing:
sink-mappings:
- prefix: service
Expand Down
4 changes: 2 additions & 2 deletions test/presubmit-integration-tests-latest-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# This script is used in Knative/test-infra as a custom prow job to run the
# integration tests against Knative Serving / Eventing of a specific version.

export KNATIVE_SERVING_VERSION="0.25.0"
export KNATIVE_EVENTING_VERSION="0.25.0"
export KNATIVE_SERVING_VERSION="0.26.0"
export KNATIVE_EVENTING_VERSION="0.26.0"

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

0 comments on commit 61b8a75

Please sign in to comment.