Skip to content

Commit 5acbb90

Browse files
committedFeb 10, 2025·
1.4.0
1 parent b3ca972 commit 5acbb90

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed
 

‎Changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
version 1.4.0-release (2025-02-10)
2+
3+
- added support for `mul r/64`, (thanks to sabrinamanickam)
4+
- added support for `rdpru`, (thanks to JasQuirk)
5+
6+
- fixed bug in `shr r/m, 1`, (thanks to JasQuirk)
7+
18
version 1.3.2-release (2022-11-16)
29

310
- fixed bug which caused `asmline -{c,b} <NUM>` to not display the

‎Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ include_HEADERS = src/assemblyline.h
7070
# 3. Programs may need to be changed, recompiled, and relinked in order to use the new version. Bump current, set revision and age to 0.
7171

7272
# in short, if only patch from configure.ac is bumped, bump the middle number below. If more is changed, read the above
73-
libassemblyline_la_LDFLAGS = -version-info 3:5:2
73+
libassemblyline_la_LDFLAGS = -version-info 4:0:3
7474
##############################################################################################
7575
##############################################################################################
7676
############################### BINS ##############################################

‎configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([assemblyline],[1.3.2],[yval@cs.adelaide.edu.au])
5+
AC_INIT([assemblyline],[1.4.0],[yval@cs.adelaide.edu.au])
66
AC_CONFIG_HEADERS([config.h])
77
AC_CONFIG_SRCDIR([src/assemblyline.c])
88
AC_CONFIG_AUX_DIR([build-aux])

0 commit comments

Comments
 (0)
Please sign in to comment.