Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bc86a1e53f | ||
|
|
9b35ab37aa | ||
|
|
a9995808ec |
@@ -3,7 +3,7 @@ cmake_minimum_required (VERSION 3.22)
|
||||
set (CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
project (task
|
||||
VERSION 3.0.1
|
||||
VERSION 3.0.2
|
||||
DESCRIPTION "Taskwarrior - a command-line TODO list manager"
|
||||
HOMEPAGE_URL https://taskwarrior.org/)
|
||||
|
||||
@@ -24,14 +24,14 @@ if (ENABLE_WASM)
|
||||
set(CMAKE_EXECUTABLE_SUFFIX ".js")
|
||||
endif (ENABLE_WASM)
|
||||
|
||||
message ("-- Looking for libshared")
|
||||
if (EXISTS ${CMAKE_SOURCE_DIR}/src/libshared/src)
|
||||
message ("-- Found libshared")
|
||||
message ("-- Looking for git submodules")
|
||||
if (EXISTS ${CMAKE_SOURCE_DIR}/src/libshared/src AND EXISTS ${CMAKE_SOURCE_DIR}/src/tc/corrosion)
|
||||
message ("-- Found git submodules")
|
||||
else (EXISTS ${CMAKE_SOURCE_DIR}/src/libshared/src)
|
||||
message ("-- Cloning libshared")
|
||||
message ("-- Cloning git submodules")
|
||||
execute_process (COMMAND git submodule update --init
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
endif (EXISTS ${CMAKE_SOURCE_DIR}/src/libshared/src)
|
||||
endif (EXISTS ${CMAKE_SOURCE_DIR}/src/libshared/src AND EXISTS ${CMAKE_SOURCE_DIR}/src/tc/corrosion)
|
||||
|
||||
message ("-- Looking for SHA1 references")
|
||||
if (EXISTS ${CMAKE_SOURCE_DIR}/.git/index)
|
||||
|
||||
10
ChangeLog
10
ChangeLog
@@ -1,5 +1,13 @@
|
||||
------ current release ---------------------------
|
||||
|
||||
3.0.2 -
|
||||
|
||||
- Fix an accidentally-included debug print which polluted output of
|
||||
reports with the Taskwarrior version (#3389)
|
||||
|
||||
------ old releases ------------------------------
|
||||
|
||||
|
||||
3.0.1 -
|
||||
|
||||
- Fix an error in creation of the 3.0.0 tarball which caused builds to fail (#3302)
|
||||
@@ -8,8 +16,6 @@
|
||||
- Fix incorrect task ID of 0 when using hooks (#3339)
|
||||
- Issue a warning if .data files remain (#3321)
|
||||
|
||||
------ old releases ------------------------------
|
||||
|
||||
3.0.0 -
|
||||
|
||||
- [BREAKING CHANGE] the sync functionality has been rewritten entirely, and
|
||||
|
||||
@@ -95,7 +95,6 @@ bool Version::operator==(const Version &other) const {
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
bool Version::operator!=(const Version &other) const {
|
||||
std::cout << other;
|
||||
return std::tie(major, minor, patch) !=
|
||||
std::tie(other.major, other.minor, other.patch);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user