Skip to content

Commit

Permalink
Version bump to 1.8.0 (for development)
Browse files Browse the repository at this point in the history
  • Loading branch information
stonith committed Aug 11, 2015
1 parent 9cf6f65 commit 0208c47
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ memcached Cookbook CHANGELOG
============================
This file is used to list changes made in each version of the memcached cookbook.

v1.8.0 (2015-08-11)
-------------------
- updated serverspec tests to pass (See 3c7b5c9)
- deconflict memcached_instance runit definition from default init (See b06d2d)
- split `default.rb` into `install.rb` and `configure.rb` so that memcached_instance only starts the specified number of instances
- added attributes `logfilepath`, `version`, `threads`, `experimental_options`, and `ulimit`
- NOTE: if memcached_instance name is not specified or set to "memcached", the instance name will be "memcached". If anything else is specified, the instance name will be "memcached-${name}"

v1.7.2 (2014-03-12)
-------------------
Expand All @@ -11,8 +18,8 @@ v1.7.2 (2014-03-12)

v1.7.0
------
Updating for yum ~> 3.0.
Fixing up style issues for rubocop.
Updating for yum ~> 3.0.
Fixing up style issues for rubocop.
Updating test-kitchen harness


Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A runit service can be set up for instances using the `memcache_instance` defini

### Platforms
- Ubuntu 10.04, 12.04
- CentOS 5.8, 6.3
- CentOS/RHEL 5.8, 6.3
- openSUSE 12.3
- SLES 12 SP2
- SmartOS base64 1.8.1 - Note that SMF directly configures memcached with no opportunity to alter settings. If you need custom parameters, use the `memcached_instance` provider instead.
Expand All @@ -21,6 +21,8 @@ May work on other systems with or without modification.

### Cookbooks
- runit
- yum
- yum-epel


Attributes
Expand All @@ -34,7 +36,8 @@ The following are node attributes passed to the template for the runit service.
- `memcached['listen']` - IP address for memcache to listen on, defaults to **0.0.0.0** (world accessible).
- `memcached['maxconn']` - maximum number of connections to accept (defaults to 1024)
- `memcached['max_object_size']` - maximum size of an object to cache (defaults to 1MB)
- `memcached['logfilename']` - logfile to which memcached output will be redirected in /var/log/$logfilename.
- `memcached['logfilepath']` - path to directory where log file will be written.
- `memcached['logfilename']` - logfile to which memcached output will be redirected in $logfilepath/$logfilename.
- `memcached['threads']` - Number of threads to use to process incoming requests. The default is 4.
- `memcached['experimental_options']` - Comma separated list of extended or experimental options. (array)
- `memcached['ulimit']` - boolean `true` will set the ulimit to the `maxconn` value
Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
license 'Apache 2.0'
description 'Installs memcached and provides a define to set up an instance of memcache via runit'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.7.3'
version '1.8.0'

depends 'runit', '~> 1.0'
depends 'yum', '~> 3.0'
Expand Down

0 comments on commit 0208c47

Please sign in to comment.