Skip to content

Commit 6ba9bf4

Browse files
committed
release 3.0.2
1 parent 2dc6ddb commit 6ba9bf4

File tree

4 files changed

+35
-3
lines changed

4 files changed

+35
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Versioning is strictly based on [Semantic Versioning](https://semver.org/)
103103
* push commit and tag
104104
* upload rock to luarocks: `luarocks upload rockspecs/[name] --api-key=abc`
105105

106-
### Unreleased
106+
### 3.0.2 (16-May-2024)
107107

108108
* Fix: avoid creating multiple timers to run the same active check [#157](https://github.com/Kong/lua-resty-healthcheck/pull/157)
109109

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ <h3>Returns:</h3>
832832
</div> <!-- id="main" -->
833833
<div id="about">
834834
<i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i>
835-
<i style="float:right;">Last updated 2023-12-22 15:40:41 </i>
835+
<i style="float:right;">Last updated 2024-05-16 13:54:05 </i>
836836
</div> <!-- id="about" -->
837837
</div> <!-- id="container" -->
838838
</body>

docs/topics/README.md.html

+7-1
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,12 @@ <h3>Releasing new versions:</h3>
163163
<li>upload rock to luarocks: <code>luarocks upload rockspecs/[name] --api-key=abc</code></li>
164164
</ul>
165165

166+
<h3>3.0.2 (16-May-2024)</h3>
167+
168+
<ul>
169+
<li>Fix: avoid creating multiple timers to run the same active check <a href="https://github.com/Kong/lua-resty-healthcheck/pull/157">#157</a></li>
170+
</ul>
171+
166172
<h3>3.0.1 (22-Dec-2023)</h3>
167173

168174
<ul>
@@ -467,7 +473,7 @@ <h2>Copyright and License</h2>
467473
</div> <!-- id="main" -->
468474
<div id="about">
469475
<i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i>
470-
<i style="float:right;">Last updated 2023-12-22 15:40:41 </i>
476+
<i style="float:right;">Last updated 2024-05-16 13:54:05 </i>
471477
</div> <!-- id="about" -->
472478
</div> <!-- id="container" -->
473479
</body>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package = "lua-resty-healthcheck"
2+
version = "3.0.2-1"
3+
source = {
4+
url = "git+https://github.com/Kong/lua-resty-healthcheck.git",
5+
tag = "3.0.2"
6+
}
7+
description = {
8+
summary = "Healthchecks for OpenResty to check upstream service status",
9+
detailed = [[
10+
lua-resty-healthcheck is a module that can check upstream service
11+
availability by sending requests and validating responses at timed
12+
intervals.
13+
]],
14+
license = "Apache 2.0",
15+
homepage = "https://github.com/Kong/lua-resty-healthcheck"
16+
}
17+
dependencies = {
18+
"penlight >= 1.9.2",
19+
"lua-resty-timer ~> 1",
20+
}
21+
build = {
22+
type = "builtin",
23+
modules = {
24+
["resty.healthcheck"] = "lib/resty/healthcheck.lua",
25+
}
26+
}

0 commit comments

Comments
 (0)