Skip to content

Commit

Permalink
Release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vhotspur committed Sep 25, 2023
1 parent 20b8812 commit 9608bdb
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
PACKAGE_NAME: msim-git
PACKAGE_MAINTAINER: vhotspur
PACKAGE_SUMMARY: "A virtual machine simulator based on a MIPS R4000 and RISC-V processor"
PACKAGE_VERSION: 2.1.2
PACKAGE_VERSION: 2.2.0

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
PACKAGE_NAME: msim
PACKAGE_MAINTAINER: vhotspur
PACKAGE_SUMMARY: "A virtual machine simulator based on a MIPS R4000 and RISC-V processor"
PACKAGE_VERSION: 2.1.2
PACKAGE_VERSION: 2.2.0

jobs:
build:
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2023-09-25 Vojtech Horky <horky@d3s.mff.cuni.cz>
Version 2.2.0
* Add debugging dnomem device

2023-09-22 Vojtech Horky <horky@d3s.mff.cuni.cz>
Version 2.1.2
* CI improvements
Expand Down
18 changes: 9 additions & 9 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.71 for msim 2.1.2.
# Generated by GNU Autoconf 2.71 for msim 2.2.0.
#
# Report bugs to <github.com/d-iii-s/msim>.
#
Expand Down Expand Up @@ -610,8 +610,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='msim'
PACKAGE_TARNAME='https://d3s.mff.cuni.cz/software/msim/'
PACKAGE_VERSION='2.1.2'
PACKAGE_STRING='msim 2.1.2'
PACKAGE_VERSION='2.2.0'
PACKAGE_STRING='msim 2.2.0'
PACKAGE_BUGREPORT='github.com/d-iii-s/msim'
PACKAGE_URL=''

Expand Down Expand Up @@ -1267,7 +1267,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures msim 2.1.2 to adapt to many kinds of systems.
\`configure' configures msim 2.2.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1330,7 +1330,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of msim 2.1.2:";;
short | recursive ) echo "Configuration of msim 2.2.0:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1416,7 +1416,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
msim configure 2.1.2
msim configure 2.2.0
generated by GNU Autoconf 2.71
Copyright (C) 2021 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1734,7 +1734,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by msim $as_me 2.1.2, which was
It was created by msim $as_me 2.2.0, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
Expand Down Expand Up @@ -5020,7 +5020,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by msim $as_me 2.1.2, which was
This file was extended by msim $as_me 2.2.0, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -5084,7 +5084,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
msim config.status 2.1.2
msim config.status 2.2.0
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"
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_INIT([msim], [2.1.2], [github.com/d-iii-s/msim], [https://d3s.mff.cuni.cz/software/msim/])
AC_INIT([msim], [2.2.0], [github.com/d-iii-s/msim], [https://d3s.mff.cuni.cz/software/msim/])

AC_PROG_CC
if test "$GCC" = "yes" ; then
Expand Down
File renamed without changes.
6 changes: 5 additions & 1 deletion contrib/msim.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: A virtual machine simulator based on a MIPS R4000 and RISC-V processor
Name: msim
Version: 2.1.2
Version: 2.2.0
Release: 1%{?dist}
License: GPLv2+
Group: Development/Tools
Expand Down Expand Up @@ -40,6 +40,10 @@ make install DESTDIR=$RPM_BUILD_ROOT
%{_bindir}/msim

%changelog
* Tue Sep 19 2023 Vojtech Horky <horky@d3s.mff.cuni.cz> - 2.1.0
- Bump to 2.2.0
- Add dnomem device

* Tue Sep 19 2023 Vojtech Horky <horky@d3s.mff.cuni.cz> - 2.1.0
- Bump to 2.1.2
- Fix broken device cleanup
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ PROJECT_NAME = MSIM
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 2.1.2
PROJECT_NUMBER = 2.2.0

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
2 changes: 1 addition & 1 deletion doc/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Let's assume that the installation has been completed. After starting
~$ msim
<msim> Alert: Configuration file "msim.conf" not found, skipping
<msim> Alert: MSIM 2.1.2
<msim> Alert: MSIM 2.2.0
<msim> Alert: Entering interactive mode, type `help' for help.
[msim]
Expand Down
2 changes: 1 addition & 1 deletion msim-git.rpkg.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: A virtual machine simulator based on a MIPS R4000 and RISC-V processor
Name: {{{ git_name name="msim-git" }}}
Version: {{{ git_version lead=2.1.2 }}}
Version: {{{ git_version lead=2.2.0 }}}
Release: 1%{?dist}
License: GPLv2+
Group: Development/Tools
Expand Down

0 comments on commit 9608bdb

Please # to comment.