Skip to content

Commit

Permalink
Merge pull request #2 from spandex-project/rel_0_1_1
Browse files Browse the repository at this point in the history
chore: release 0.1.1
  • Loading branch information
GregMefford authored Oct 16, 2018
2 parents 9928a8d + a7e5b89 commit 26c236a
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 11 deletions.
22 changes: 13 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
# Changelog
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](Https://conventionalcommits.org) for commit guidelines.

<!-- changelog -->

## [0.1.1](https://github.com/spandex-project/spandex_phoenix/compare/0.1.0...0.1.1) (2018-10-15)

### Bug Fixes:

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).
* Indirectly call Tracer to remove compiler warnings ([#1](https://github.com/spandex-project/spandex_phoenix/pull/1))

## [Unreleased]
- No unreleased changes currently.

## [0.1.0]
## [0.1.0](https://github.com/spandex-project/spandex_phoenix/compare/0.1.0...0.1.0) (2018-09-15)

### Added
- Initial release of the `spandex_phoenix` library.
### Features:

[0.1.0]: https://github.com/spandex-project/spandex_phoenix/commit/c0ab823e2ab5af5ed9953f5ec5008bf34ffa4f4e
* Initial release! 🚀 🎉
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add `spandex_phoenix` to your dendencies in `mix.exs`:
```elixir
def deps do
[
{:spandex_phoenix, "~> 0.1.0"}
{:spandex_phoenix, "~> 0.1.1"}
]
end
```
Expand Down
2 changes: 2 additions & 0 deletions config/config.exs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
use Mix.Config

config :spandex_phoenix, tracer: MyApp.Tracer

import_config "#{Mix.env()}.exs"
8 changes: 8 additions & 0 deletions config/dev.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
use Mix.Config

config :git_ops,
changelog_file: "CHANGELOG.md",
manage_mix_version?: true,
manage_readme_version: "README.md",
mix_project: SpandexPhoenix.MixProject,
repository_url: "https://github.com/spandex-project/spandex_phoenix"
1 change: 1 addition & 0 deletions config/test.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use Mix.Config
5 changes: 4 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
defmodule SpandexPhoenix.MixProject do
use Mix.Project

@version "0.1.1"

def project do
[
app: :spandex_phoenix,
version: "0.1.0",
version: @version,
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
package: package(),
Expand Down Expand Up @@ -47,6 +49,7 @@ defmodule SpandexPhoenix.MixProject do
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:git_ops, "~> 0.3.3", only: :dev},
{:phoenix, "~> 1.0"},
{:spandex, "~> 2.0"}
]
Expand Down
2 changes: 2 additions & 0 deletions mix.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
%{
"earmark": {:hex, :earmark, "1.2.6", "b6da42b3831458d3ecc57314dff3051b080b9b2be88c2e5aa41cd642a5b044ed", [:mix], [], "hexpm"},
"ex_doc": {:hex, :ex_doc, "0.19.1", "519bb9c19526ca51d326c060cb1778d4a9056b190086a8c6c115828eaccea6cf", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.7", [hex: :makeup_elixir, repo: "hexpm", optional: false]}], "hexpm"},
"git_cli": {:hex, :git_cli, "0.2.5", "40673235d088d2784d4e03511e62cac2ef520495cb6cc459f00b4e13aaf0fbf4", [:mix], [], "hexpm"},
"git_ops": {:hex, :git_ops, "0.3.3", "512adfa3fd082fadbee13a05e53cfbd680b2bbf810e8f44b1ba2824040e0605d", [:mix], [{:git_cli, "~> 0.2", [hex: :git_cli, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 0.4", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm"},
"makeup": {:hex, :makeup, "0.5.5", "9e08dfc45280c5684d771ad58159f718a7b5788596099bdfb0284597d368a882", [:mix], [{:nimble_parsec, "~> 0.4", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm"},
"makeup_elixir": {:hex, :makeup_elixir, "0.8.2", "ecc130aaf3645d142f50ccd4c727f714afdb490062dcaf009f4c2d86332d1beb", [:mix], [{:makeup, "~> 0.5.5", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm"},
"mime": {:hex, :mime, "1.3.0", "5e8d45a39e95c650900d03f897fbf99ae04f60ab1daa4a34c7a20a5151b7a5fe", [:mix], [], "hexpm"},
Expand Down

0 comments on commit 26c236a

Please sign in to comment.