Skip to content

Commit

Permalink
chore: automatically increment version in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nmbrone committed Oct 13, 2023
1 parent fa1d042 commit 2b28157
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The package can be installed by adding `feature_supervisor` to your list of depe
```elixir
def deps do
[
{:feature_supervisor, "~> 0.1.0"}
{:feature_supervisor, "~> 0.0.1"} # {x-release-please-version}
]
end
```
Expand Down
7 changes: 3 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
defmodule FeatureSupervisor.MixProject do
use Mix.Project

@version "0.0.1"
@source_url "https://github.com/nmbrone/feature_supervisor"

def project do
[
app: :feature_supervisor,
version: "0.0.1",
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down Expand Up @@ -41,9 +42,7 @@ defmodule FeatureSupervisor.MixProject do
defp docs do
[
main: "Readme",
# x-release-please-start-version
source_ref: "v0.0.1",
# x-release-please-end
source_ref: "v#{@version}",
source_url: @source_url,
extras: ["README.md"]
]
Expand Down

0 comments on commit 2b28157

Please sign in to comment.