From 4c48863d48d65d72762d63f76f74324e9a317cd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Pr=C3=A1?= Date: Sat, 17 Sep 2022 09:23:31 -0300 Subject: [PATCH] chore: Bump version to 3.0.0 --- README.md | 6 +++--- mix.exs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 489aa00..91239db 100644 --- a/README.md +++ b/README.md @@ -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"}, @@ -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 @@ -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 diff --git a/mix.exs b/mix.exs index a696414..fe47c7a 100644 --- a/mix.exs +++ b/mix.exs @@ -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(),