Skip to content

Commit

Permalink
pkg: bump version to 1.0.0 and remove mainnet warning
Browse files Browse the repository at this point in the history
  • Loading branch information
pinheadmz committed Sep 24, 2020
1 parent 95da9e3 commit 19325af
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.57])
AC_INIT([hnsd], [0.0.0], [[email protected]])
AC_INIT([hnsd], [1.0.0], [[email protected]])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])

Expand Down
2 changes: 1 addition & 1 deletion man/hnsd.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/daemon.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>\n"
"\n"
"Usage: hnsd [options]\n"
Expand Down

0 comments on commit 19325af

Please sign in to comment.