Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Sep 13, 2024
1 parent 70828c0 commit 4659dc2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 3 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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}
]
Expand Down

0 comments on commit 4659dc2

Please sign in to comment.