From fc22814ff51f6c2c3a22cf51100c0c2983c03b02 Mon Sep 17 00:00:00 2001 From: ArqTras <33489188+ArqTras@users.noreply.github.com> Date: Wed, 28 Nov 2018 17:42:51 +0100 Subject: [PATCH 1/2] README: remove duplicated libpcsclite-dev from dependency one-liner Reverting 304f157587e2833d475d0e92835ca102e23c98a8 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cfc1e2a3819..6e7fa3e2439 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ library archives (`.a`). build the library binary manually. This can be done with the following command ```sudo apt-get install libgtest-dev && cd /usr/src/gtest && sudo cmake . && sudo make && sudo mv libg* /usr/lib/ ``` Install all dependencies at once on Debian/Ubuntu: -``` sudo apt update && sudo apt install build-essential cmake git libpcsclite-dev pkg-config libboost-all-dev libssl-dev libzmq3-dev libunbound-dev libsodium-dev libminiupnpc-dev libunwind8-dev liblzma-dev libreadline6-dev libldns-dev libexpat1-dev doxygen graphviz libpcsclite-dev ``` +``` sudo apt update && sudo apt install build-essential cmake git pkg-config libboost-all-dev libssl-dev libzmq3-dev libunbound-dev libsodium-dev libminiupnpc-dev libunwind8-dev liblzma-dev libreadline6-dev libldns-dev libexpat1-dev doxygen graphviz libpcsclite-dev ``` ### Cloning the repository Clone recursively to pull-in needed submodule(s): From e01bdb4b1f65bfb737abc2e0103e94fc7d453eea Mon Sep 17 00:00:00 2001 From: stoffu Date: Fri, 30 Nov 2018 12:56:13 +0900 Subject: [PATCH 2/2] Bump version to 0.12.8 --- README.md | 10 +++++----- src/version.cpp.in | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6e7fa3e2439..66c8bac2027 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ Dates are provided in the format YYYY-MM-DD. | Software upgrade block height | Date | Fork version | Minimum Aeon version | Recommended Aeon version | Details | | ------------------------------ | -----------| ----------------- | ---------------------- | -------------------------- | ---------------------------------------------------------------------------------- | | 592000 | 2015-08-04 | v1 (exceptional, version not bumped) | v0.9.0.0 | v0.9.14.0 | blocktime = 240 seconds, CryptoNight-Lite, lower mining priority for ringsize < 3 | -| 963500 | 2018-06-03 | v7 | v0.12.0.0 | v0.12.6.0-aeon | Rebase to Monero's latest codebase with RingCT disabled, CryptoNight-Lite variant 1, limited use of ringsize 1, ban ringsize 2 | +| 963500 | 2018-06-03 | v7 | v0.12.0.0 | v0.12.8.0-aeon | Rebase to Monero's latest codebase with RingCT disabled, CryptoNight-Lite variant 1, limited use of ringsize 1, ban ringsize 2 | ## Compiling Aeon from source @@ -157,7 +157,7 @@ invokes cmake commands as needed. * Change to the root of the source code directory, change to the most recent release tag, and build: cd aeon - git checkout v0.12.6.0-aeon + git checkout v0.12.8.0-aeon make *Optional*: If your machine has several cores and enough memory, enable @@ -219,7 +219,7 @@ Tested on a Raspberry Pi Zero with a clean install of minimal Raspbian Stretch ( ``` git clone https://github.com/aeonix/aeon.git cd aeon - git checkout tags/v0.12.6.0-aeon + git checkout tags/v0.12.8.0-aeon ``` * Build: ``` @@ -316,9 +316,9 @@ application. cd aeon -* If you would like a specific [version/tag](https://github.com/aeonix/aeon/tags), do a git checkout for that version. eg. 'v0.12.6.0-aeon'. If you dont care about the version and just want binaries from master, skip this step: +* If you would like a specific [version/tag](https://github.com/aeonix/aeon/tags), do a git checkout for that version. eg. 'v0.12.8.0-aeon'. If you dont care about the version and just want binaries from master, skip this step: - git checkout v0.12.6.0-aeon + git checkout v0.12.8.0-aeon * If you are on a 64-bit system, run: diff --git a/src/version.cpp.in b/src/version.cpp.in index 855c94cd654..e6e0e3ef52f 100644 --- a/src/version.cpp.in +++ b/src/version.cpp.in @@ -1,5 +1,5 @@ #define DEF_MONERO_VERSION_TAG "@VERSIONTAG@" -#define DEF_MONERO_VERSION "0.12.7.0-master" +#define DEF_MONERO_VERSION "0.12.8.0-master" #define DEF_MONERO_RELEASE_NAME "Sophia" #define DEF_MONERO_VERSION_FULL DEF_MONERO_VERSION "-" DEF_MONERO_VERSION_TAG