Skip to content

Commit

Permalink
release 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
windmgc committed May 16, 2024
1 parent 2dc6ddb commit 6ba9bf4
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Versioning is strictly based on [Semantic Versioning](https://semver.org/)
* push commit and tag
* upload rock to luarocks: `luarocks upload rockspecs/[name] --api-key=abc`

### Unreleased
### 3.0.2 (16-May-2024)

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

Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ <h3>Returns:</h3>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i>
<i style="float:right;">Last updated 2023-12-22 15:40:41 </i>
<i style="float:right;">Last updated 2024-05-16 13:54:05 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
8 changes: 7 additions & 1 deletion docs/topics/README.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,12 @@ <h3>Releasing new versions:</h3>
<li>upload rock to luarocks: <code>luarocks upload rockspecs/[name] --api-key=abc</code></li>
</ul>

<h3>3.0.2 (16-May-2024)</h3>

<ul>
<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>
</ul>

<h3>3.0.1 (22-Dec-2023)</h3>

<ul>
Expand Down Expand Up @@ -467,7 +473,7 @@ <h2>Copyright and License</h2>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i>
<i style="float:right;">Last updated 2023-12-22 15:40:41 </i>
<i style="float:right;">Last updated 2024-05-16 13:54:05 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
26 changes: 26 additions & 0 deletions rockspecs/lua-resty-healthcheck-3.0.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "lua-resty-healthcheck"
version = "3.0.2-1"
source = {
url = "git+https://github.com/Kong/lua-resty-healthcheck.git",
tag = "3.0.2"
}
description = {
summary = "Healthchecks for OpenResty to check upstream service status",
detailed = [[
lua-resty-healthcheck is a module that can check upstream service
availability by sending requests and validating responses at timed
intervals.
]],
license = "Apache 2.0",
homepage = "https://github.com/Kong/lua-resty-healthcheck"
}
dependencies = {
"penlight >= 1.9.2",
"lua-resty-timer ~> 1",
}
build = {
type = "builtin",
modules = {
["resty.healthcheck"] = "lib/resty/healthcheck.lua",
}
}

0 comments on commit 6ba9bf4

Please sign in to comment.