Skip to content

Commit

Permalink
build: Bump version to 3.5.0.
Browse files Browse the repository at this point in the history
* Describe how to make a release.
* Fix so build.sh works from release version as well.
  • Loading branch information
wdoekes committed Feb 8, 2016
1 parent 17a397d commit 2f14c81
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
8 changes: 4 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Features added in 3.5.0-rc4
===========================
Features added in 3.5.0
=======================

* Clean up source code, fix typo's, alter warning and error messages,
fix pedantic coding style. Add gtest framework and tests. Add regression
Expand All @@ -26,8 +26,8 @@ Features added in 3.5.0-rc4
`-key file1 /path/to/pcap`.


Bugs fixed in 3.5.0-rc4
=======================
Bugs fixed in 3.5.0
===================

* Start SDP search in body instead of in header. Fix IPv6 media address in SDP.
* Allow single CR and single LF in SDP.
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ I try and be responsive to issues raised on Github, and there's [a
reasonably active mailing
list](https://lists.sourceforge.net/lists/listinfo/sipp-users).

# Making a release

* Update CHANGES.md and configure.ac. Tag release.
* Download zip, `autoreconf -vif`, copy sipp.1, copy include/version.h.
* Create tgz. Upload to github as "binary".

# Contributing

SIPp is free software, under the terms of the GPL licence (see the
Expand Down
13 changes: 10 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ set -e # abort on error
MAKE=`which gmake make 2>/dev/null | head -n1` # prefer GNU make
test -z "$MAKE" && echo "No (g)make found" >&2 && exit 1

git submodule update --init
# Optional: for git checkout only.
if which git >/dev/null && test -d .git; then
git submodule update --init
fi

autoreconf -vifs

if test "$*" = "--full"; then
Expand All @@ -20,7 +24,10 @@ fi

"$MAKE" clean

"$MAKE" sipp_unittest
./sipp_unittest
# Optional: for git checkout only.
if test -f gtest/gtest.h; then
"$MAKE" sipp_unittest
./sipp_unittest
fi

"$MAKE"
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ======================== initialization ===============================

AC_INIT([SIPp], [3.5.0-rc4], [[email protected]], [sipp])
AC_INIT([SIPp], [3.5.0], [[email protected]], [sipp])

# Load non-standard m4 files from ./m4/*.m4.
# AC_CONFIG_MACRO_DIR([m4]) does not work on pre-1.13 aclocal, so we
Expand Down

0 comments on commit 2f14c81

Please sign in to comment.