Skip to content

Commit 8df1f6d

Browse files
committed
Bump to v0.15.1 for packaging and release.
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.
1 parent 46b6829 commit 8df1f6d

File tree

7 files changed

+16
-12
lines changed

7 files changed

+16
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# API Umbrella Change Log
22

3-
## 0.15.0 (2019-05-14)
3+
## 0.15.1 (2019-05-14)
44

55
👋 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.
66

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

87+
## 0.15.0 (Unreleased)
88+
89+
Due to some packaging issues, version 0.15.0 was never released. See [version 0.15.1](#0150-2019-05-14).
90+
8791
## 0.14.4 (2017-07-15)
8892

8993
This update contains one important fix for v0.14.3. Upgrading is recommended if you are currently running v0.14.3.

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:stretch
22

3-
ENV API_UMBRELLA_VERSION 0.15.0-1~stretch
3+
ENV API_UMBRELLA_VERSION 0.15.1-1~stretch
44

55
# Install API Umbrella
66
RUN echo "deb http://dl.bintray.com/nrel/api-umbrella-debian stretch main" >> /etc/apt/sources.list.d/api-umbrella.list

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
# built documents.
5858
#
5959
# The short X.Y version.
60-
version = '0.15.0'
60+
version = '0.15.1'
6161
# The full version, including alpha/beta/rc tags.
62-
release = '0.15.0'
62+
release = '0.15.1'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

docs/developer/compiling-from-source.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Installing from a [binary package](../getting-started.html#installation) is reco
1111
## Compiling & Installing
1212

1313
```sh
14-
$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.15.0.tar.gz
15-
$ tar -xvf api-umbrella-0.15.0.tar.gz
16-
$ cd api-umbrella-0.15.0
14+
$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.15.1.tar.gz
15+
$ tar -xvf api-umbrella-0.15.1.tar.gz
16+
$ cd api-umbrella-0.15.1
1717
$ sudo ./tasks/install-system-build-dependencies
1818
$ ./configure
1919
$ make

src/api-umbrella/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.15.0
1+
0.15.1

website/source/index.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ title: API Umbrella - Open Source API Management
1919
</div>
2020
<img class="img-responsive img-center" src="images/overview.png" data-at2x="images/[email protected]" alt="" width="676" height="266">
2121
<div class="links">
22-
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>
22+
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>
2323
</div>
2424
</div>
2525
</div>

website/source/install.html.erb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ sudo yum install api-umbrella</pre>
6565

6666
<div id="other" class="platform-download" style="display: none;">
6767
<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>
68-
<pre>$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.15.0.tar.gz
69-
$ tar -xvf api-umbrella-0.15.0.tar.gz
70-
$ cd api-umbrella-0.15.0
68+
<pre>$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.15.1.tar.gz
69+
$ tar -xvf api-umbrella-0.15.1.tar.gz
70+
$ cd api-umbrella-0.15.1
7171
$ make
7272
$ sudo make install</pre>
7373
</div>

0 commit comments

Comments
 (0)