From 323ad30e25c2c81efdb07ab76601a119335a40c8 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Wed, 19 Oct 2022 14:09:22 +0800 Subject: [PATCH] Bump mold version to 1.6.0 --- CMakeLists.txt | 2 +- Makefile | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d43dbc3df..a5344d9ae2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,7 +44,7 @@ # features and behave exactly the same. cmake_minimum_required(VERSION 3.13) -project(mold VERSION 1.5.1) +project(mold VERSION 1.6.0) include(CMakeDependentOption) include(GNUInstallDirs) diff --git a/Makefile b/Makefile index 0a69016bd2..f026cdb704 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 1.5.1 +VERSION = 1.6.0 PREFIX = /usr/local BINDIR = $(PREFIX)/bin diff --git a/README.md b/README.md index 19b5b704cd..ae97798998 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ necessary packages. You may want to run it as root. git clone https://github.com/rui314/mold.git mkdir mold/build cd mold/build -git checkout v1.5.1 +git checkout v1.6.0 ../install-build-deps.sh cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=c++ .. cmake --build . -j $(nproc)