Skip to content

Commit

Permalink
Release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cabol committed Mar 30, 2020
1 parent e167c19 commit f48f7f4
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 10 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,16 @@ otp_release:
- 21.3
sudo: false
env:
- CI=true MIX_ENV=test
- CI=true
before_script:
- epmd -daemon
- mix deps.get --only test
- mix deps.get
script:
- mix compile --warnings-as-errors
- mix credo --strict
- mix format --check-formatted
- mix coveralls.travis
- MIX_ENV=test mix coveralls.travis
- mix dialyzer --plt
- mix dialyzer --halt-exit-status
after_script:
- mix deps.get --only docs
- MIX_ENV=docs mix inch.report
29 changes: 24 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## [v1.2.0](https://github.com/cabol/nebulex/tree/v1.2.0) (2020-03-30)

[Full Changelog](https://github.com/cabol/nebulex/compare/v1.1.1...v1.2.0)

**Implemented enhancements:**

- Refactor Nebulex.Caching in order to use annotated functions via decorators [\#66](https://github.com/cabol/nebulex/issues/66)

**Fixed bugs:**

- Sporadic :badarg error [\#52](https://github.com/cabol/nebulex/issues/52)

**Closed issues:**

- Question: disabling cache conditionally in defcacheable [\#63](https://github.com/cabol/nebulex/issues/63)
- Support for persistence operations [\#61](https://github.com/cabol/nebulex/issues/61)
- Implement adapter for replicated topology [\#60](https://github.com/cabol/nebulex/issues/60)

**Merged pull requests:**

- \[\#66\] Refactor Nebulex.Caching to use annotated functions via decorators [\#67](https://github.com/cabol/nebulex/pull/67) ([cabol](https://github.com/cabol))
- Fixes and enhancements for v1.2.0 [\#64](https://github.com/cabol/nebulex/pull/64) ([cabol](https://github.com/cabol))
- Features for next release \(v1.2.0\) [\#59](https://github.com/cabol/nebulex/pull/59) ([cabol](https://github.com/cabol))

## [v1.1.1](https://github.com/cabol/nebulex/tree/v1.1.1) (2019-11-11)

[Full Changelog](https://github.com/cabol/nebulex/compare/v1.1.0...v1.1.1)
Expand All @@ -10,10 +34,6 @@
- Ability to "get or set" a key [\#49](https://github.com/cabol/nebulex/issues/49)
- Multilevel Cache: transaction/3 is attempting to change all levels multiple times. [\#35](https://github.com/cabol/nebulex/issues/35)

**Fixed bugs:**

- Sporadic :badarg error [\#52](https://github.com/cabol/nebulex/issues/52)

**Closed issues:**

- Pre Expire Hook [\#57](https://github.com/cabol/nebulex/issues/57)
Expand Down Expand Up @@ -72,7 +92,6 @@

**Merged pull requests:**

- typo in transaction docs [\#38](https://github.com/cabol/nebulex/pull/38) ([fredr](https://github.com/fredr))
- Handle an :infinity expiration in multilevel replication. [\#36](https://github.com/cabol/nebulex/pull/36) ([sdost](https://github.com/sdost))
- add missing coma in conf section of readme file [\#32](https://github.com/cabol/nebulex/pull/32) ([Kociamber](https://github.com/Kociamber))

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Nebulex.Mixfile do
use Mix.Project

@version "1.2.0-dev"
@version "1.2.0"

def project do
[
Expand Down

0 comments on commit f48f7f4

Please sign in to comment.