Skip to content

Commit

Permalink
chore: Bump version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielpra1 committed Sep 17, 2022
1 parent 48ff571 commit 4c48863
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The package can be installed by adding `uploadex` to your list of dependencies i
```elixir
def deps do
[
{:uploadex, "~> 3.0.0-rc.1"},
{:uploadex, "~> 3.0.0"},
# S3 dependencies(required for S3 storage only)
{:ex_aws, "~> 2.1"},
{:ex_aws_s3, "~> 2.0.2"},
Expand Down Expand Up @@ -141,7 +141,7 @@ The `use Uploadex` line in your Uploader module will import 3 groups of function

#### Context

The highest level functions are context helpers (see [Context](https://hexdocs.pm/uploadex/3.0.0-rc.1/Uploadex.Context.html) for more documentation), which will allow you to easily create, update and delete your records with associated files:
The highest level functions are context helpers (see [Context](https://hexdocs.pm/uploadex/Uploadex.Context.html) for more documentation), which will allow you to easily create, update and delete your records with associated files:

```elixir
defmodule MyApp.Accounts do
Expand Down Expand Up @@ -197,7 +197,7 @@ Some examples:

## Testing

For knowing how to test with Uploadex, check the hexdocs of the [Testing](https://hexdocs.pm/uploadex/3.0.0-rc.1/Uploadex.Testing.html#content) module.
For knowing how to test with Uploadex, check the hexdocs of the [Testing](https://hexdocs.pm/uploadex/Uploadex.Testing.html#content) module.

## Motivation

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 Uploadex.MixProject do
def project do
[
app: :uploadex,
version: "3.0.0-rc.1",
version: "3.0.0",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down

0 comments on commit 4c48863

Please sign in to comment.