From b6603ab21fd47c76f3dc848e067047672814d268 Mon Sep 17 00:00:00 2001 From: Jakob Haahr Taankvist Date: Sun, 27 Aug 2023 09:56:44 +0200 Subject: [PATCH] Bumb to version 1.1.0 --- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 306c6c4..18b60a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,20 @@ This project adheres to [Semantic Versioning](http://semver.org/). --- +## 1.1.0 + +- New features and update dependencies to support elixir 1.15 + +### Added/Changed + +- Added support for streaming blobs +- Added support for copying blobs +- Added support for deleting blobs +- Removed Timex dependency +- Updated dependencies to get fix for supporing elixir 1.15 + +### Fixed + ## 1.0.0 - Bump to version 1.0.0, has been used in production in several places diff --git a/README.md b/README.md index e474b7c..ad558b3 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ by adding `azurex` to your list of dependencies in `mix.exs` e.g.: ```elixir def deps do [ - {:azurex, "~> 1.0.0"} + {:azurex, "~> 1.1.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 91b48f9..2b80284 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Azurex.MixProject do def project do [ app: :azurex, - version: "1.0.0", + version: "1.1.0", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,