Skip to content

Commit

Permalink
Bump to v0.15.1 for packaging and release.
Browse files Browse the repository at this point in the history
We can't release v0.15.0, since we accidentally published a pre-release
version under the same version number to BinTray over a year ago.
BinTray won't allow editing or deleting a release that was created over
365 days ago, so we're sort of locked out of using that version number
on BinTray's el6 repo again.
  • Loading branch information
GUI committed May 14, 2019
1 parent 46b6829 commit 8df1f6d
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 12 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# API Umbrella Change Log

## 0.15.0 (2019-05-14)
## 0.15.1 (2019-05-14)

👋 Long time no release! Sorry for the long gap since our last formal release, but we have a sizable upgrade ready that fixes various bugs, and makes a lot of internal improvements. Upgrading is recommended.

Expand Down Expand Up @@ -84,6 +84,10 @@ If you're upgrading a previous API Umbrella version, you may upgrade the `api-um
- **Removed experimental analytics:** Removed code related to experimental analytics backend. ([77d50d0](https://github.com/NREL/api-umbrella/commit/77d50d00397d7b7d00c50fbb3dca9ed2b8a55335))
- **Removed Vagrant development environment:** Removed the Vagrant-based development environment in favor of the Docker-based development environment.

## 0.15.0 (Unreleased)

Due to some packaging issues, version 0.15.0 was never released. See [version 0.15.1](#0150-2019-05-14).

## 0.14.4 (2017-07-15)

This update contains one important fix for v0.14.3. Upgrading is recommended if you are currently running v0.14.3.
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
@@ -1,6 +1,6 @@
FROM debian:stretch

ENV API_UMBRELLA_VERSION 0.15.0-1~stretch
ENV API_UMBRELLA_VERSION 0.15.1-1~stretch

# Install API Umbrella
RUN echo "deb http://dl.bintray.com/nrel/api-umbrella-debian stretch main" >> /etc/apt/sources.list.d/api-umbrella.list
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = '0.15.0'
version = '0.15.1'
# The full version, including alpha/beta/rc tags.
release = '0.15.0'
release = '0.15.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 3 additions & 3 deletions docs/developer/compiling-from-source.md
Expand Up @@ -11,9 +11,9 @@ Installing from a [binary package](../getting-started.html#installation) is reco
## Compiling & Installing

```sh
$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.15.0.tar.gz
$ tar -xvf api-umbrella-0.15.0.tar.gz
$ cd api-umbrella-0.15.0
$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.15.1.tar.gz
$ tar -xvf api-umbrella-0.15.1.tar.gz
$ cd api-umbrella-0.15.1
$ sudo ./tasks/install-system-build-dependencies
$ ./configure
$ make
Expand Down
2 changes: 1 addition & 1 deletion src/api-umbrella/version.txt
@@ -1 +1 @@
0.15.0
0.15.1
2 changes: 1 addition & 1 deletion website/source/index.html.erb
Expand Up @@ -19,7 +19,7 @@ title: API Umbrella - Open Source API Management
</div>
<img class="img-responsive img-center" src="images/overview.png" data-at2x="images/overview@2x.png" alt="" width="676" height="266">
<div class="links">
Version 0.15.0&nbsp;&nbsp;&nbsp;&nbsp;&sdot;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://github.com/NREL/api-umbrella"><i class="fa fa-github" aria-hidden="true"></i>GitHub Project</a>
Version 0.15.1&nbsp;&nbsp;&nbsp;&nbsp;&sdot;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://github.com/NREL/api-umbrella"><i class="fa fa-github" aria-hidden="true"></i>GitHub Project</a>
</div>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions website/source/install.html.erb
Expand Up @@ -65,9 +65,9 @@ sudo yum install api-umbrella</pre>

<div id="other" class="platform-download" style="display: none;">
<p>We build binary packages for a variety of Linux distributions. These binary packages are the recommended way to install API Umbrella. However, if binary packages aren't available, you can also compile from source (also, please <a href="https://github.com/NREL/api-umbrella/issues">let us know</a> if you'd like to see binaries for other operating systems):</p>
<pre>$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.15.0.tar.gz
$ tar -xvf api-umbrella-0.15.0.tar.gz
$ cd api-umbrella-0.15.0
<pre>$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.15.1.tar.gz
$ tar -xvf api-umbrella-0.15.1.tar.gz
$ cd api-umbrella-0.15.1
$ make
$ sudo make install</pre>
</div>
Expand Down

0 comments on commit 8df1f6d

Please sign in to comment.