Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F85628777
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 292db69..d9871f1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,21 +1,21 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
-## [Unreleased]
+## [0.1.1] 2020-09-13
### Added
- Telemetry events.
### Fixed
- Decrement counter when max retries has been reached.
- Ensure counter is always decremented in case of process being killed (by using "sentinel" processes that monitors).
- Fixes behaviour of `max_waiting = 0` with `max_size = 1`.
## [0.1.0] - 2020-05-16
Initial release.
diff --git a/mix.exs b/mix.exs
index 237b2b9..df575d1 100644
--- a/mix.exs
+++ b/mix.exs
@@ -1,47 +1,47 @@
defmodule ConcurrentLimiter.MixProject do
use Mix.Project
@repo "https://git.pleroma.social/pleroma/elixir-libraries/concurrent_limiter"
def project do
[
app: :concurrent_limiter,
description: "A concurrency limiter",
- version: "0.1.0",
+ version: "0.1.1",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
# Docs
name: "Concurrent Limiter",
source_url: @repo,
homepage_url: @repo,
docs: [
main: "ConcurrentLimiter",
extras: [],
source_url_pattern: @repo <> "/blob/master/%{path}#L%{line}"
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:telemetry, "~> 0.3"},
{:credo, "~> 1.1.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
{:benchee, "~> 1.0", only: [:dev, :test]}
]
end
defp package do
[
licenses: ["LGPLv3"],
links: %{"GitLab" => @repo}
]
end
end
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sat, Aug 8, 2:15 PM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1720603
Default Alt Text
(1 KB)
Attached To
Mode
R12 concurrent_limiter
Attached
Detach File
Event Timeline
Log In to Comment