Skip to content

Commit 16b1adf

Browse files
authored
Merge pull request #1 from bobmaerten/jemalloc_5.2.0
Jemalloc 5.2.0
2 parents 9f4c1db + 05bda15 commit 16b1adf

File tree

3 files changed

+17
-15
lines changed

3 files changed

+17
-15
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
default: scalingo scalingo-18
22

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

66
clean:
@@ -34,3 +34,4 @@ all:
3434
$(MAKE) scalingo scalingo-18 VERSION=4.5.0
3535
$(MAKE) scalingo scalingo-18 VERSION=5.0.1
3636
$(MAKE) scalingo scalingo-18 VERSION=5.1.0
37+
$(MAKE) scalingo scalingo-18 VERSION=5.2.0

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Set this to select or pin to a specific version of jemalloc. The default is to
6262
use the latest stable version if this is not set. You will receive an error
6363
mentioning tar if the version does not exist.
6464

65-
**Default**: `5.1.0`
65+
**Default**: `5.2.0`
6666

6767
**note:** This setting is only used during slug compilation. Changing it will
6868
require a code change to be deployed in order to take affect.
@@ -73,17 +73,18 @@ scalingo env-set JEMALLOC_VERSION=3.6.0
7373

7474
#### Available Versions
7575

76-
| Version |
77-
| ------- |
78-
| 3.6.0 |
79-
| 4.0.4 |
80-
| 4.1.1 |
81-
| 4.2.1 |
82-
| 4.3.1 |
83-
| 4.4.0 |
84-
| 4.5.0 |
85-
| 5.0.1 |
86-
| 5.1.0 |
76+
| Version |
77+
| ---------------------------------------------------------------- |
78+
| [3.6.0](https://github.com/jemalloc/jemalloc/releases/tag/3.6.0) |
79+
| [4.0.4](https://github.com/jemalloc/jemalloc/releases/tag/4.0.4) |
80+
| [4.1.1](https://github.com/jemalloc/jemalloc/releases/tag/4.1.1) |
81+
| [4.2.1](https://github.com/jemalloc/jemalloc/releases/tag/4.2.1) |
82+
| [4.3.1](https://github.com/jemalloc/jemalloc/releases/tag/4.3.1) |
83+
| [4.4.0](https://github.com/jemalloc/jemalloc/releases/tag/4.4.0) |
84+
| [4.5.0](https://github.com/jemalloc/jemalloc/releases/tag/4.5.0) |
85+
| [5.0.1](https://github.com/jemalloc/jemalloc/releases/tag/5.0.1) |
86+
| [5.1.0](https://github.com/jemalloc/jemalloc/releases/tag/5.1.0) |
87+
| [5.2.0](https://github.com/jemalloc/jemalloc/releases/tag/5.2.0) |
8788

8889
The complete and most up to date list of supported versions and stacks is
8990
available on the [releases page.](https://github.com/Scalingo/jemalloc-buildpack/releases)
@@ -105,7 +106,7 @@ This uses Docker to build against Scalingo
105106
[stack-image](https://doc.scalingo.com/platform/internals/base-docker-image#top-of-page)-like images.
106107

107108
```console
108-
make VERSION=5.1.0
109+
make VERSION=5.2.0
109110
```
110111

111112
Artifacts will be dropped in `dist/` based on Scalingo stack and jemalloc version.

bin/compile

Lines changed: 1 addition & 1 deletion
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.1.0"
11+
version="5.2.0"
1212

1313
# Read version from configured JEMALLOC_VERSION
1414
if [ -f $ENV_DIR/JEMALLOC_VERSION ]; then

0 commit comments

Comments
 (0)