Skip to content

Commit

Permalink
Release version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Härer committed Oct 3, 2022
1 parent 39cf0be commit 034429e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Validixir brings powerful and reusable applicative validation to Elixir.
The library was created based on the conviction, that exclusively valid domains objects should be producible, and thus exist.
To implement this requirement, we need an easy yet powerful mechanism of expressing validations. The concept of this library is mainly based on applicative validation from languages like Haskell, with some flavors coming from the dynamically typed nature of Elixir.

To see a complete example of validation with Validixir, check out the included [example-file](test/example.exs) and the corresponding [test-file](test/validixir_test.exs).
To see a complete example of validation with Validixir, check out the included [example file](test/example.exs) and the corresponding [test file](test/validixir_test.exs).

## Installation

Expand All @@ -17,7 +17,7 @@ The package can be installed by adding `validixir` to your list of dependencies
```elixir
def deps do
[
{:validixir, "~> 0.1.1"}
{:validixir, "~> 1.0.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Validixir.MixProject do
def project do
[
app: :validixir,
version: "0.1.1",
version: "1.0.0",
elixir: "~> 1.13",
package: package(),
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit 034429e

Please sign in to comment.