Skip to content

Commit

Permalink
Prepare release (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaeIsBad authored May 17, 2023
1 parent b8dd456 commit ce6a99e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
files:
- path: mix.exs
pattern: '@version \"{version}\"'
- path: README.md
pattern: '\"~> {version}\"'
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

---

## [0.4.0] - 2023-05-17

### Added

- `:country` configuration option
Expand All @@ -27,7 +31,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.2.5] - 2022-06-16

[Unreleased]: https://github.com/primait/prima_ex_logger/compare/0.3.1...HEAD

[Unreleased]: https://github.com/primait/prima_ex_logger/compare/0.4.0...HEAD
[0.4.0]: https://github.com/primait/prima_ex_logger/compare/0.3.1...0.4.0
[0.3.1]: https://github.com/primait/prima_ex_logger/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/primait/prima_ex_logger/compare/0.2.5...0.3.0
[0.2.5]: https://github.com/primait/prima_ex_logger/releases/tag/0.2.5
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ by adding `prima_ex_logger` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:prima_ex_logger, "~> 0.3.1"}
{:prima_ex_logger, "~> 0.4.0"}
]
end
```
Expand Down
9 changes: 6 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
defmodule PrimaExLogger.MixProject do
use Mix.Project

@source_url "https://github.com/primait/prima_ex_logger"
@version "0.4.0"

def project do
[
app: :prima_ex_logger,
version: "0.3.1",
source_url: "https://github.com/primait/prima_ex_logger",
version: @version,
source_url: @source_url,
elixir: "~> 1.11",
deps: deps(),
aliases: aliases(),
Expand Down Expand Up @@ -52,7 +55,7 @@ defmodule PrimaExLogger.MixProject do
name: "prima_ex_logger",
maintainers: ["Michelangelo Morrillo"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/primait/prima_ex_logger"}
links: %{"Github" => @source_url}
]
end

Expand Down

0 comments on commit ce6a99e

Please sign in to comment.