-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: prepare for v1.0.1 release (#113)
- Loading branch information
1 parent
56e09ec
commit a00d0a0
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Changes | ||
|
||
## 1.0.1 | ||
|
||
1. fix: allow timer to restart | ||
|
||
## 1.0.0 | ||
|
||
1. Add IgnoreSuffix feature. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package = "skywalking-nginx-lua" | ||
version = "1.0.1-0" | ||
source = { | ||
url = "git+https://github.com/apache/skywalking-nginx-lua", | ||
tag = "v1.0.1", | ||
} | ||
|
||
description = { | ||
summary = "The Nginx Lua agent for Apache SkyWalking", | ||
homepage = "https://github.com/apache/skywalking-nginx-lua", | ||
license = "Apache License 2.0" | ||
} | ||
|
||
dependencies = { | ||
"lua-resty-http >= 0.15", | ||
"lua-resty-jit-uuid >= 0.0.7" | ||
} | ||
|
||
build = { | ||
type = "builtin", | ||
modules = { | ||
["skywalking.client"] = "lib/skywalking/client.lua", | ||
["skywalking.constants"] = "lib/skywalking/constants.lua", | ||
["skywalking.correlation_context"] = "lib/skywalking/correlation_context.lua", | ||
["skywalking.management"] = "lib/skywalking/management.lua", | ||
["skywalking.segment_ref"] = "lib/skywalking/segment_ref.lua", | ||
["skywalking.segment"] = "lib/skywalking/segment.lua", | ||
["skywalking.span_layer"] = "lib/skywalking/span_layer.lua", | ||
["skywalking.span"] = "lib/skywalking/span.lua", | ||
["skywalking.tracer"] = "lib/skywalking/tracer.lua", | ||
["skywalking.tracing_context"] = "lib/skywalking/tracing_context.lua", | ||
["skywalking.util"] = "lib/skywalking/util.lua", | ||
} | ||
} |