Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jkawamoto committed Mar 9, 2017
1 parent fdc2f10 commit 63ee1c5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0
commit = True

[bumpversion:file:README.md]
Expand All @@ -13,3 +13,4 @@ commit = True
[bumpversion:file:docs/content/client.md]

[bumpversion:file:docs/content/server.md]

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![GPLv3](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://www.gnu.org/copyleft/gpl.html)
[![CircleCI](https://circleci.com/gh/itslab-kyushu/simple-kvs/tree/master.svg?style=svg)](https://circleci.com/gh/itslab-kyushu/simple-kvs/tree/master)
[![wercker status](https://app.wercker.com/status/717adbfffa215daf21462bfa273a5a16/s/master "wercker status")](https://app.wercker.com/project/byKey/717adbfffa215daf21462bfa273a5a16)
[![Release](https://img.shields.io/badge/release-0.1.0-brightgreen.svg)](https://github.com/itslab-kyushu/simple-kvs/releases/tag/v0.1.0)
[![Release](https://img.shields.io/badge/release-0.2.0-brightgreen.svg)](https://github.com/itslab-kyushu/simple-kvs/releases/tag/v0.2.0)
[![Dockerhub](https://img.shields.io/badge/dockerhub-itslabq%2Fsimple--kvs-blue.svg)](https://hub.docker.com/r/itslabq/simple-kvs/)
[![MicroBadger](https://images.microbadger.com/badges/image/itslabq/simple-kvs.svg)](https://microbadger.com/images/itslabq/simple-kvs)

Expand Down
2 changes: 1 addition & 1 deletion client/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ package main
const Name string = "kvs"

// Version defines current version number.
const Version string = "0.1.0"
const Version string = "0.2.0"

// Author defines the author of this program.
const Author string = "Junpei Kawamoto"
Expand Down
2 changes: 1 addition & 1 deletion docs/content/client.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description: >-
delete is deleting a file from the server,
and list is showing names of files stored in the server.
---
[![Release](https://img.shields.io/badge/release-0.1.0-brightgreen.svg)](https://github.com/itslab-kyushu/simple-kvs/releases/tag/v0.1.0)
[![Release](https://img.shields.io/badge/release-0.2.0-brightgreen.svg)](https://github.com/itslab-kyushu/simple-kvs/releases/tag/v0.2.0)

## Summary
Client application provides an interface to a client/server style data storage
Expand Down
2 changes: 1 addition & 1 deletion docs/content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description: >-
[![GPLv3](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://www.gnu.org/copyleft/gpl.html)
[![CircleCI](https://circleci.com/gh/itslab-kyushu/simple-kvs/tree/master.svg?style=svg)](https://circleci.com/gh/itslab-kyushu/simple-kvs/tree/master)
[![wercker status](https://app.wercker.com/status/717adbfffa215daf21462bfa273a5a16/s/master "wercker status")](https://app.wercker.com/project/byKey/717adbfffa215daf21462bfa273a5a16)
[![Release](https://img.shields.io/badge/release-0.1.0-brightgreen.svg)](https://github.com/itslab-kyushu/simple-kvs/releases/tag/v0.1.0)
[![Release](https://img.shields.io/badge/release-0.2.0-brightgreen.svg)](https://github.com/itslab-kyushu/simple-kvs/releases/tag/v0.2.0)

## Summary
This is a simple client/server application of a key-value datastore service.
Expand Down
2 changes: 1 addition & 1 deletion docs/content/server.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ weight: 20
description: >-
Server application provides a key-value datastore service based on gRPC.
---
[![Release](https://img.shields.io/badge/release-0.1.0-brightgreen.svg)](https://github.com/itslab-kyushu/simple-kvs/releases/tag/v0.1.0)
[![Release](https://img.shields.io/badge/release-0.2.0-brightgreen.svg)](https://github.com/itslab-kyushu/simple-kvs/releases/tag/v0.2.0)
[![Dockerhub](https://img.shields.io/badge/dockerhub-itslabq%2Fsimple--kvs-blue.svg)](https://hub.docker.com/r/itslabq/simple-kvs/)
[![MicroBadger](https://images.microbadger.com/badges/image/itslabq/simple-kvs.svg)](https://microbadger.com/images/itslabq/simple-kvs)

Expand Down
2 changes: 1 addition & 1 deletion server/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ package main
const Name string = "kvs-server"

// Version defines current version number.
const Version string = "0.1.0"
const Version string = "0.2.0"

// Author defines the author of this program.
const Author string = "Junpei Kawamoto"
Expand Down

0 comments on commit 63ee1c5

Please sign in to comment.