Skip to content

Commit

Permalink
Bump version to 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
hzeller committed Jan 30, 2021
1 parent 7cd7452 commit b2362c3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
14 changes: 11 additions & 3 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2021-01-21 Bump version number: GMediaRender 0.0.9
- More fine-grained mime filters
- Reduced memory in scan mime list
- A bunch of little cleanups.
- Use UpnpInit2() as the old has been dropped from
libupnp (CVE-2020-12695)
This means, there is no --ip-address anymore to bind, but
--interface-name instead.

2019-10-20 Bump version number: GMediaRender 0.0.8
- Various small changes over the last years.
- Now compiles with old and new libupnp (1.6.x and 1.8.x)
Expand Down Expand Up @@ -35,8 +44,8 @@
--dump-transport-scpd

2007-11-05: GMediaRender 0.0.5
- BUG #16640: Rename inline 'min' function to avoid issues with
GCC 4.0.3
- BUG #16640: Rename inline 'min' function to avoid issues with
GCC 4.0.3
- BUG #17887: Update to gstreamer-0.10
Based on a patch contributed by David Siorpaes
- Fix compilation with libupnp-1.60, with largefile support
Expand All @@ -60,4 +69,3 @@

2005-08-31: GMediaRender 0.0.1
- First preliminary release

9 changes: 4 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ(2.59)
AC_INIT(gmediarender, 0.0.8, https://github.com/hzeller/gmrender-resurrect)
AC_INIT(gmediarender, 0.0.9, https://github.com/hzeller/gmrender-resurrect)
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_SRCDIR(src/main.c)
AC_CONFIG_HEADERS(config.h)
Expand All @@ -13,15 +13,15 @@ AC_PROG_CC_STDC
AC_PROG_INSTALL
AC_PROG_MAKE_SET

EXTRA_GCC_DEBUG_CFLAGS=""
EXTRA_GCC_DEBUG_CFLAGS=""
EXTRA_GCC_DEBUG_CXXFLAGS=""

if test -n "$GCC"; then
EXTRA_GCC_DEBUG_CFLAGS="$CFLAGS"
EXTRA_GCC_DEBUG_CXXFLAGS="$CXXFLAGS"
CFLAGS+=" -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations -Wwrite-strings"
CXXFLAGS+=" -Wall -Wpointer-arith"
fi
fi

AC_CHECK_FUNCS([asprintf])
AC_CHECK_LIB([m],[exp])
Expand Down Expand Up @@ -120,4 +120,3 @@ AC_CONFIG_FILES([Makefile
src/Makefile
data/Makefile])
AC_OUTPUT

2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ endif
main.c : git-version.h

git-version.h: .FORCE
$(AM_V_GEN)(echo "#define GM_COMPILE_VERSION \"$(shell git log -n1 --date=short --format='0.0.8_git%cd_%h' 2>/dev/null || echo -n '0.0.8')\"" > $@-new; \
$(AM_V_GEN)(echo "#define GM_COMPILE_VERSION \"$(shell git log -n1 --date=short --format='0.0.9_git%cd_%h' 2>/dev/null || echo -n '0.0.9')\"" > $@-new; \
cmp -s $@ $@-new || cp $@-new $@; \
rm $@-new)

Expand Down

0 comments on commit b2362c3

Please sign in to comment.