diff --git a/CHANGELOG.md b/CHANGELOG.md index 9951afb..a146819 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.5.4 + +- Some minor wording updates. + ## 1.5.3 - Remove now-pointless re-raise. diff --git a/README.md b/README.md index 87b76e1..7b22442 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Caddy [![Build Status](https://travis-ci.org/nickelser/caddy.svg?branch=master)](https://travis-ci.org/nickelser/caddy) [![Code Climate](https://codeclimate.com/github/nickelser/caddy/badges/gpa.svg)](https://codeclimate.com/github/nickelser/caddy) [![Test Coverage](https://codeclimate.com/github/nickelser/caddy/badges/coverage.svg)](https://codeclimate.com/github/nickelser/caddy) [![Gem Version](https://badge.fury.io/rb/caddy.svg)](http://badge.fury.io/rb/caddy) -Caddy is an asynchronously updated store that is updated on an interval to store objects that you can access quickly during requests. +Caddy is an asynchronously refreshed cache that is updated on an interval to store objects that you can access quickly during requests. Caddy is great for storing information like feature flags -- accessed extremely frequently during many requests, updated relatively rarely and usually safe to be stale by some small duration. diff --git a/caddy.gemspec b/caddy.gemspec index 27b6eba..40c8988 100644 --- a/caddy.gemspec +++ b/caddy.gemspec @@ -10,7 +10,7 @@ Gem::Specification.new do |s| s.email = ["nick.elser@gmail.com"] s.summary = %q(Caddy gives you a auto-updating global cache to speed up requests.) s.description = <<-EOF - Caddy is an asynchronously updated store that is updated on an interval to store objects that you can access quickly during requests. + Caddy is an asynchronously refreshed cache that is updated on an interval to store objects that you can access quickly during requests. Caddy is great for storing information like feature flags -- accessed extremely frequently during many requests, updated relatively rarely and usually safe to be stale by some small duration. EOF diff --git a/lib/caddy/version.rb b/lib/caddy/version.rb index c86f596..fbf1632 100644 --- a/lib/caddy/version.rb +++ b/lib/caddy/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Caddy - VERSION = "1.5.3".freeze + VERSION = "1.5.4".freeze end