From 4659dc25042c8b9002cfb713adbe9aee0ead22b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Fri, 13 Sep 2024 14:47:49 +0200 Subject: [PATCH] Release v0.2.0 --- CHANGELOG.md | 8 ++++++++ mix.exs | 7 +++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c85341..dcc556e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v0.2.0](https://github.com/livebook-dev/req_athena/tree/v0.2.0) (2023-09-13) + +### Changed + +- This library now returns the direct result from Athena +- A `:format` option allows csv, json, or explorer data to be returned +- Improve integration with AWS Credentials + ## [v0.1.5](https://github.com/livebook-dev/req_athena/tree/v0.1.5) (2023-09-01) ### Changed diff --git a/mix.exs b/mix.exs index c2b6c1b..b149947 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule ReqAthena.MixProject do use Mix.Project - @version "0.1.5" + @version "0.2.0" @description "Req plugin for AWS Athena" def project do @@ -42,11 +42,10 @@ defmodule ReqAthena.MixProject do defp deps do [ {:req, "~> 0.5.0"}, - {:aws_signature, "~> 0.3.0"}, {:req_s3, "~> 0.2"}, - {:explorer, "~> 0.9", optional: true}, + {:aws_signature, "~> 0.3.0"}, {:aws_credentials, "~> 0.2", optional: true}, - {:table, "~> 0.1.1", optional: true}, + {:explorer, "~> 0.9", optional: true}, {:tzdata, "~> 1.1.1", only: :test}, {:ex_doc, ">= 0.0.0", only: :docs, runtime: false} ]