Skip to content

Commit

Permalink
should have been 2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
itismadness committed Oct 22, 2019
1 parent 023b33c commit 465c23a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
18 changes: 11 additions & 7 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
-- 1.2 (2019-10-22)
Move to CMake for building project instead of autotools
Drop Vagranfile in favor of only supporting the Dockerfile
Add support for building against jemalloc (http://jemalloc.net/)
Fix FreeBSD support (thanks @HierraStrunger)
Add systemd service file for ocelot (thanks @HierraStrunger)
-- 2.0.0 (2019-10-22)
BREAKING
* Write leech stats into their own dedicated tables (users_leech_stats, torrents_leech_stats)
* Move to CMake for building project instead of autotools
FEATURES
* Add support for building against jemalloc (http://jemalloc.net/)
* Add systemd service file for ocelot (thanks @HierraStrunger)
Add site_service config option to set the service/port ocelot runs on (defaults to "http")
Write leech stats into their own dedicated tables (users_leech_stats, torrents_leech_stats)
BUGFIXES
* Fix FreeBSD support (thanks @HierraStrunger)
BUILD
* Drop Vagranfile in favor of only supporting the Dockerfile

-- 1.1 (2018-10-29)
Move to spdlog (https://github.com/gabime/spdlog)to handle logging instead of cout
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1)
project(ocelot
VERSION 1.2.0
VERSION 2.0.0
)

# Make a subdirectory, and run cmake there (mkdir build; cd build; cmake ..)
Expand Down
2 changes: 1 addition & 1 deletion src/ocelot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ int main(int argc, char **argv) {
conf_file_path = argv[++i];
}
else if(strcmp(argv[i], "-V") == 0 || strcmp(argv[i], "--version") == 0) {
std::cout << "Ocelot, version 1.1" << std::endl;
std::cout << "Ocelot, version 2.0.0" << std::endl;
return 0;
}
else {
Expand Down

0 comments on commit 465c23a

Please sign in to comment.