Skip to content

Commit 285f6fd

Browse files
authored
prepare 5.5.7 release (#134)
1 parent ff5da71 commit 285f6fd

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ All notable changes to the LaunchDarkly Ruby SDK will be documented in this file
1111

1212
The LaunchDarkly SDK repositories are being renamed for consistency. This repository is now `ruby-server-sdk` rather than `ruby-client`.
1313

14-
The gem name will also change. In the 5.5.6 release, it is still `ldclient-rb`; in all future releases, it will be `launchdarkly-ruby-server-sdk`. No further updates to the `ldclient-rb` gem will be published after this release.
14+
The gem name will also change. In the 5.5.6 release, it is still `ldclient-rb`; in all future releases, it will be `launchdarkly-server-sdk`. No further updates to the `ldclient-rb` gem will be published after this release.
1515

1616

1717
## [5.5.5] - 2019-03-28

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
ldclient-rb (5.5.5)
4+
launchdarkly-server-sdk (5.5.6)
55
concurrent-ruby (~> 1.0)
66
json (>= 1.8, < 3)
77
ld-eventsource (~> 1.0)
@@ -90,7 +90,7 @@ DEPENDENCIES
9090
codeclimate-test-reporter (~> 0)
9191
connection_pool (>= 2.1.2)
9292
diplomat (>= 2.0.2)
93-
ldclient-rb!
93+
launchdarkly-server-sdk!
9494
listen (~> 3.0)
9595
rake (~> 10.0)
9696
redis (~> 3.3.5)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
LaunchDarkly Server-side SDK for Ruby
22
===========================
33

4-
[![Gem Version](https://badge.fury.io/rb/ldclient-rb.svg)](http://badge.fury.io/rb/ldclient-rb)
4+
[![Gem Version](https://badge.fury.io/rb/launchdarkly-server-sdk.svg)](http://badge.fury.io/rb/launchdarkly-server-sdk)
55

66
[![Circle CI](https://circleci.com/gh/launchdarkly/ruby-server-sdk/tree/master.svg?style=svg)](https://circleci.com/gh/launchdarkly/ruby-server-sdk/tree/master)
77
[![Security](https://hakiri.io/github/launchdarkly/ruby-server-sdk/master.svg)](https://hakiri.io/github/launchdarkly/ruby-server-sdk/master)
@@ -27,7 +27,7 @@ Learn more
2727

2828
Check out our [documentation](http://docs.launchdarkly.com) for in-depth instructions on configuring and using LaunchDarkly. You can also head straight to the [reference guide for this SDK](http://docs.launchdarkly.com/docs/ruby-sdk-reference).
2929

30-
Generated API documentation is on [RubyDoc.info](https://www.rubydoc.info/gems/ldclient-rb).
30+
Generated API documentation is on [RubyDoc.info](https://www.rubydoc.info/gems/launchdarkly-server-sdk).
3131

3232
Testing
3333
-------

ldclient-rb.gemspec renamed to launchdarkly-server-sdk.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require "ldclient-rb/version"
66

77
# rubocop:disable Metrics/BlockLength
88
Gem::Specification.new do |spec|
9-
spec.name = "ldclient-rb"
9+
spec.name = "launchdarkly-server-sdk"
1010
spec.version = LaunchDarkly::VERSION
1111
spec.authors = ["LaunchDarkly"]
1212
spec.email = ["team@launchdarkly.com"]

scripts/gendocs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Use this script to generate documentation locally in ./doc so it can be proofed before release.
4-
# After release, documentation will be visible at https://www.rubydoc.info/gems/ldclient-rb
4+
# After release, documentation will be visible at https://www.rubydoc.info/gems/launchdarkly-server-sdk
55

66
gem install --conservative yard
77
gem install --conservative redcarpet # provides Markdown formatting

scripts/release.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
# This script updates the version for the ldclient library and releases it to RubyGems
2+
# This script updates the version for the launchdarkly-server-sdk library and releases it to RubyGems
33
# It will only work if you have the proper credentials set up in ~/.gem/credentials
44

55
# It takes exactly one argument: the new version.
@@ -13,15 +13,15 @@ echo "Starting ruby-server-sdk release."
1313

1414
VERSION=$1
1515

16-
#Update version in ldclient/version.py
16+
#Update version in lib/ldclient-rb/version.rb
1717
VERSION_RB_TEMP=./version.rb.tmp
1818
sed "s/VERSION =.*/VERSION = \"${VERSION}\"/g" lib/ldclient-rb/version.rb > ${VERSION_RB_TEMP}
1919
mv ${VERSION_RB_TEMP} lib/ldclient-rb/version.rb
2020

2121
# Build Ruby Gem
22-
gem build ldclient-rb.gemspec
22+
gem build launchdarkly-server-sdk.gemspec
2323

2424
# Publish Ruby Gem
25-
gem push ldclient-rb-${VERSION}.gem
25+
gem push launchdarkly-server-sdk-${VERSION}.gem
2626

2727
echo "Done with ruby-server-sdk release"

0 commit comments

Comments
 (0)