Skip to content

Commit

Permalink
docs(readme): add supported version formats section
Browse files Browse the repository at this point in the history
  • Loading branch information
sheerlox committed Nov 17, 2023
1 parent 1542e5e commit 9f64d24
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,30 @@ Add the plugin to the [**semantic-release** configuration file](https://github.c
}
```

## Supported version formats

### Regular

```elixir
def project do
[
version: "0.4.2",
]
end
```

### Module attribute

```elixir
@version "0.4.2"

def project do
[
version: @version,
]
end
```

## Community

Join the [Discord server](https://discord.gg/cRB8XRFKzH)! Here you can discuss issues and get help in a more casual forum than GitHub.
Expand Down

0 comments on commit 9f64d24

Please sign in to comment.