Skip to content

Commit 872b03c

Browse files
committed
Make 5.1.0 the default
After a few months of testing 5.1.0 appears to be stable and working well. It is a recommended upgrade by the jemalloc team. Closes mojodna#2
1 parent 08f77c0 commit 872b03c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
default: cedar-14 heroku-16 heroku-18
22

3-
VERSION := 5.0.1
3+
VERSION := 5.1.0
44
ROOT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
55

66
clean:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ Set this to select or pin to a specific version of jemalloc. The default is to
5656
use the latest stable version if this is not set. You will receive an error
5757
mentioning tar if the version does not exist.
5858

59-
**Default**: `5.0.1`
59+
**Default**: `5.1.0`
6060

6161
**note:** This setting is only used during slug compilation. Changing it will
6262
require a code change to be deployed in order to take affect.
6363

6464
```console
65-
heroku config:set JEMALLOC_VERSION=5.0.1
65+
heroku config:set JEMALLOC_VERSION=3.6.0
6666
```
6767

6868
#### Available Versions
@@ -88,7 +88,7 @@ This uses Docker to build against Heroku
8888
[stack-image](https://github.com/heroku/stack-images)-like images.
8989

9090
```console
91-
make VERSION=5.0.1
91+
make VERSION=5.1.0
9292
```
9393

9494
Artifacts will be dropped in `dist/` based on Heroku stack and jemalloc version.

bin/compile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CACHE_DIR=$2
88
ENV_DIR=$3
99

1010
# Default version
11-
version="5.0.1"
11+
version="5.1.0"
1212

1313
# Read version from configured JEMALLOC_VERSION
1414
if [ -f $ENV_DIR/JEMALLOC_VERSION ]; then
@@ -18,7 +18,7 @@ fi
1818
url="https://github.com/gaffneyc/heroku-buildpack-jemalloc/releases/download/$STACK/jemalloc-$version.tar.bz2"
1919
dest="$BUILD_DIR/vendor/jemalloc"
2020

21-
echo "-----> Vendoring jemalloc"
21+
echo "-----> Vendoring jemalloc $version"
2222
echo " Fetching $url"
2323

2424
mkdir -p $dest

0 commit comments

Comments
 (0)