Skip to content

Commit

Permalink
chore(rockspec) unpin kong version and release new rockspec
Browse files Browse the repository at this point in the history
Notice how in addition to renaming the rockpec, this makes two changes on the rockspec:

* Changes the `version` field from `0.2.0-0` to `0.2.1`
* Removes `kong` from the `dependencies` table.

The later is done because there is a "circular dependency", which luarocks currently doesn't detect, and this has pernicious consequences when running tests (the CI installs older versions of Kong, and older versions of other gems along that).

Since the change affects only the rockspec, it is not necessary to release a new version of the plugin for this (anyone installing the plugin via luarocks will get the updated luarock).
  • Loading branch information
kikito committed Nov 29, 2019
1 parent 3aa1cc9 commit a9b49e2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package = "kong-plugin-zipkin"
version = "0.2.0-0"
version = "0.2.0-1"

source = {
url = "https://github.com/kong/kong-plugin-zipkin/archive/v0.2.0.zip";
Expand All @@ -16,7 +16,6 @@ dependencies = {
"lua >= 5.1";
"lua-cjson";
"lua-resty-http >= 0.11";
"kong >= 0.15";
"opentracing >= 0.0.2";
}

Expand Down

0 comments on commit a9b49e2

Please sign in to comment.