diff --git a/Makefile.am b/Makefile.am index b793da84..78e8f205 100644 --- a/Makefile.am +++ b/Makefile.am @@ -23,7 +23,7 @@ libhsk_la_LIBADD = $(top_builddir)/uv/libuv.la \ $(LIB_WINBCRYPT) libhsk_la_CFLAGS = -DHSK_BUILD @CFLAGS@ -libhsk_la_LDFLAGS = -no-undefined -version-info 0:0:0 +libhsk_la_LDFLAGS = -no-undefined -version-info 1:0:0 libhsk_la_SOURCES = src/addr.c \ src/addrmgr.c \ src/aead.c \ diff --git a/README.md b/README.md index ab542508..8958549b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,3 @@ -:warning: Currently, `hnsd` is not compatible with the latest, Handshake -p2p network protocol. We are exploring a potential rewrite of the entire -codebase. Please watch this repo for development updates. - # hnsd SPV resolver daemon for the [Handshake][hns] network. Written in C for diff --git a/configure.ac b/configure.ac index 6c5f3307..3a535f99 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.57]) -AC_INIT([hnsd], [0.0.0], [chjj@handshake.org]) +AC_INIT([hnsd], [1.0.0], [chjj@handshake.org]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) diff --git a/man/hnsd.1 b/man/hnsd.1 index 89bc441a..cbf4b5f0 100644 --- a/man/hnsd.1 +++ b/man/hnsd.1 @@ -1,5 +1,5 @@ .ds q \N'34' -.TH hnsd 1 "2018-08-01" "v0.0.0" "hnsd" +.TH hnsd 1 "2020-09-24" "v1.0.0" "hnsd" .SH NAME hnsd \- SPV resolver for the Handshake network diff --git a/src/constants.h b/src/constants.h index b593f210..b39685f5 100644 --- a/src/constants.h +++ b/src/constants.h @@ -13,7 +13,7 @@ #endif #define HSK_MAX_MESSAGE (8 * 1000 * 1000) -#define HSK_USER_AGENT "/hnsd:0.0.0/" +#define HSK_USER_AGENT "/hnsd:1.0.0/" #define HSK_PROTO_VERSION 1 #define HSK_SERVICES 0 #define HSK_MAX_DATA_SIZE 668 diff --git a/src/daemon.c b/src/daemon.c index a04e17ca..f11dd564 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -107,7 +107,7 @@ static void help(int r) { fprintf(stderr, "\n" - "hnsd 0.0.0\n" + "hnsd 1.0.0\n" " Copyright (c) 2018, Christopher Jeffrey \n" "\n" "Usage: hnsd [options]\n"