mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-07-01 09:14:38 +03:00
bump version to v3.1.6 for further development
This commit is contained in:
parent
dfa50c37d9
commit
dc84ea7866
4 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
set(mi_version_major 3)
|
||||
set(mi_version_minor 1)
|
||||
set(mi_version_patch 5)
|
||||
set(mi_version_patch 6)
|
||||
set(mi_version ${mi_version_major}.${mi_version_minor})
|
||||
|
||||
set(PACKAGE_VERSION ${mi_version})
|
||||
|
|
|
@ -3,13 +3,13 @@ vcpkg_from_github(
|
|||
REPO microsoft/mimalloc
|
||||
HEAD_REF master
|
||||
|
||||
# The "REF" can be a commit hash, branch name (dev2), or a version (v2.2.1).
|
||||
# The `REF` can be a commit hash, branch name (`dev3`), or a version (`v3.1.4`).
|
||||
# Use `"v${VERSION}"` to use the version specified in `vcpkg.json`.
|
||||
REF "v${VERSION}"
|
||||
# REF 6a89f8554eaab8d8d00e17b5b09f79e1d8dbf61b
|
||||
|
||||
# The sha512 is the hash of the tar.gz bundle.
|
||||
# (To get the sha512, run `vcpkg install "mimalloc[override]" --overlay-ports=./contrib/vcpkg` and copy the sha from the error message.)
|
||||
SHA512 1e1268292283eb3c07a1f4de1bb919ebfeb18cbd4af0ca01d197d4dc46972ea127527e95e18f73381bda03593bcca5d3e4744c3ab49876c68567abebff030690
|
||||
SHA512 616351e549707318c1f8b164251141684a73d5bf8205b905736f48ab21fbb19bfaa4d52c4e63642fcb144345b6a5331944b6c8e0827925000553e46f2c2c31e9
|
||||
)
|
||||
|
||||
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mimalloc",
|
||||
"version": "3.1.4",
|
||||
"version": "3.1.5",
|
||||
"port-version": 2,
|
||||
"description": "Compact general purpose allocator with excellent performance",
|
||||
"homepage": "https://github.com/microsoft/mimalloc",
|
||||
|
|
|
@ -8,7 +8,7 @@ terms of the MIT license. A copy of the license can be found in the file
|
|||
#ifndef MIMALLOC_H
|
||||
#define MIMALLOC_H
|
||||
|
||||
#define MI_MALLOC_VERSION 315 // major + 2 digits minor
|
||||
#define MI_MALLOC_VERSION 316 // major + 2 digits minor
|
||||
|
||||
// ------------------------------------------------------
|
||||
// Compiler specific attributes
|
||||
|
|
Loading…
Add table
Reference in a new issue