Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bump version number |
---|---|
Timelines: | family | ancestors | descendants | both | trunk | 0.6.2-20180329 |
Files: | files | file ages | folders |
SHA1: |
77f0ecc7305962af876450e878be488e |
User & Date: | bernd 2018-03-29 11:45:52.926 |
Context
2018-03-29
| ||
13:48 | Debian build check-in: ced89c42e4 user: bernd tags: trunk | |
11:45 | Bump version number check-in: 77f0ecc730 user: bernd tags: trunk, 0.6.2-20180329 | |
11:40 | Bump version number check-in: bf30ac7fe1 user: bernd tags: trunk | |
Changes
Changes to bump.
1 2 3 4 5 | #!/bin/bash #Usage ./bump major.minor.patch V="$1-$(date +%Y%m%d)" | | | 1 2 3 4 5 6 7 8 | #!/bin/bash #Usage ./bump major.minor.patch V="$1-$(date +%Y%m%d)" sed -e "s/AC_INIT(\([^ ,]*, *\[\)[0-9._\-]*/AC_INIT(\1$V/g" configure.ac >configure.ac+ && mv configure.ac+ configure.ac dvcs ci -m "Bump version number" dvcs tag add $V |
Changes to configure.ac.
︙ | ︙ | |||
11 12 13 14 15 16 17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. AC_INIT([net2o], [0.6.2-20180329], [bernd@net2o.de], [net2o], [https://fossil.net2o.de/net2o/reportlist]) AC_PREREQ([2.59]) AC_CONFIG_MACRO_DIR([m4]) AC_USE_SYSTEM_EXTENSIONS LT_INIT AC_MSG_CHECKING([for gforth]) |
︙ | ︙ |