Release version 0.1

This commit is contained in:
Stef Walter 2012-03-25 13:48:29 +02:00
parent 7f7f048b15
commit 0be598f82c
4 changed files with 23 additions and 45 deletions

View File

@ -9,7 +9,8 @@ DISTCHECK_CONFIGURE_FLAGS = \
--enable-debug=yes \ --enable-debug=yes \
--disable-coverage \ --disable-coverage \
--enable-strict \ --enable-strict \
--disable-silent-rules --disable-silent-rules \
--enable-gtk-doc
dist-hook: dist-hook:
@if test -d "$(srcdir)/.git"; \ @if test -d "$(srcdir)/.git"; \

34
NEWS
View File

@ -1,33 +1,3 @@
2.27.90 0.1
=======
* Fixed configure script to actually error out if installed glib
version is too old (Emilio Pozuelo Monfort)
* gnutls: updated GTlsClientConnectionGnutls for :accepted-cas type * Initial release, not yet stable
change (Stef Walter)
* gnutls: fixed an uninitialized variable (Dan Winship)
2.27.5
======
* gnutls: finish implementing GTlsRehandshakeMode, which was present
but non-functional in 2.27.4
* gnutls: updates for glib TLS API changes
* gnutls: fix some async bugs that caused the main loop to spin
* gnutls: implement a client-side session cache, to speed up
handshakes
* Compile with gcc warnings by default
2.27.4
======
* GNUTLS-based implementation of GTlsBackend
2.26.0
======
* No changes, just a version bump
2.25.0
======
* Initial release, with libproxy-based GProxyResolver

View File

@ -47,15 +47,6 @@ check_PROGRAMS = \
noinst_PROGRAMS = \ noinst_PROGRAMS = \
$(NULL) $(NULL)
EXTRA_DIST = \
mock \
mock-service-delete.py \
mock-service-lock.py \
mock-service-normal.py \
mock-service-only-plain.py \
mock-service-prompt.py \
$(NULL)
JS_TESTS = \ JS_TESTS = \
test-lookup-password.js \ test-lookup-password.js \
test-remove-password.js \ test-remove-password.js \
@ -76,10 +67,10 @@ test-c: $(TEST_PROGS)
@gtester --verbose -m $(TEST_MODE) --g-fatal-warnings $(TEST_PROGS) @gtester --verbose -m $(TEST_MODE) --g-fatal-warnings $(TEST_PROGS)
test-js: test-js:
@for js in $(JS_TESTS); do echo "TEST: $$js"; $(JS_ENV) gjs $$js; done @for js in $(JS_TESTS); do echo "TEST: $$js"; $(JS_ENV) gjs $(srcdir)/$$js; done
test-py: test-py:
@for py in $(PY_TESTS); do echo "TEST: $$py"; $(PY_ENV) python $$py; done @for py in $(PY_TESTS); do echo "TEST: $$py"; $(PY_ENV) python $(srcdir)/$$py; done
test: test-c test-py test-js test: test-c test-py test-js
@ -112,10 +103,25 @@ endif
#-------------------------------------------------------------------- #--------------------------------------------------------------------
EXTRA_DIST = \
mock \
mock-service-delete.py \
mock-service-lock.py \
mock-service-normal.py \
mock-service-only-plain.py \
mock-service-prompt.py \
$(JS_TESTS) \
$(PY_TESTS) \
$(NULL)
CLEANFILES = \
$(noinst_DATA) \
$(NULL)
all-local: $(check_PROGRAMS) all-local: $(check_PROGRAMS)
check-local: test check-local: test
check-memory: perform-memcheck check-memory: perform-memcheck
.PHONY: check-memory .PHONY: check-memory

View File

@ -1,2 +1,3 @@
library/secret-item.c library/secret-item.c
library/secret-session.c library/secret-session.c
tool/secret-tool.c