Skip to content

Commit

Permalink
Merge branch 'release/2.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
lrascao committed Sep 9, 2020
2 parents f60503d + 49d0443 commit ed005bf
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
_build
rebar.lock
.rebar
.eunit
.deps_plt
Expand Down
21 changes: 14 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
sudo: false
language: erlang
otp_release:
- R16B03-1
- 17.4
- 17.5
- 18.0
- 18.1
- 18.2
script: "make travis"
- 19.3
- 20.0
- 20.1
- 20.3
- 21.0
- 21.1
- 21.2
- 21.3
- 22.0
- 22.1
- 22.2
- 22.3
- 23.0
script: make travis
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [2.0.3] - 09-09-2020

### Added
+ Travis CI icon, to help increase consumer confidence

### Changed
+ Travis CI targets (make it more modern)

### Fixed
+ .gitignore: assume our `rebar3` -oriented nature

## [2.0.2] - 26-09-2019

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ REBAR=$(shell which rebar)
.PHONY: all compile clean dialyze rebuild test

all: compile
travis: test
travis: dialyze test

# =============================================================================
# Rules to build the system
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Poolgirl - A sexy Erlang worker pool factory

[![](https://travis-ci.com/MiniclipPortugal/poolgirl.png?branch=master)](https://travis-ci.com/MiniclipPortugal/poolgirl)
[![Erlang][erlang badge]][erlang downloads]

[erlang badge]: https://img.shields.io/badge/erlang-%3E%3D19.0-lightgrey
[erlang downloads]: http://www.erlang.org/download

Poolgirl is a **lightweight**, **generic** pooling library for Erlang with a
focus on **simplicity**, **performance**, and **rock-solid** disaster recovery.
Poolgirl is Poolboy's little sister, it's directed towards the use-case of simple workers that process requests with no need for a reply (ie. that only handle cast requests)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.1
2.0.3
2 changes: 1 addition & 1 deletion src/poolgirl.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, poolgirl, [
{description, "A sexy Erlang worker pool factory"},
{vsn, "2.0.0"},
{vsn, "2.0.3"},
{applications, [kernel, stdlib]},
{registered, [poolgirl]},
{mod, { poolgirl_app, []}}
Expand Down

0 comments on commit ed005bf

Please sign in to comment.