diff --git a/bindings/java/build.xml b/bindings/java/build.xml index 43db6ff196e24ea6f3c1959f8327ec808746b59f..e0abb64d1a8256af7cb722c41957c231a170f577 100644 --- a/bindings/java/build.xml +++ b/bindings/java/build.xml @@ -11,7 +11,7 @@ <import file="build-${os.family}.xml"/> <!-- Careful changing this because release-windows.pl updates it by pattern --> -<property name="VERSION" value="4.10.0"/> +<property name="VERSION" value="4.10.1"/> <!-- set global properties for this build --> <property name="default-jar-location" location="/usr/share/java"/> diff --git a/bindings/java/doxygen/Doxyfile b/bindings/java/doxygen/Doxyfile index c89d48702733ea190eb4bcd62f5eddd8bb9a83a0..79921cd8bd52a6dde4ef8f08ada6bc3cec5b0f1b 100644 --- a/bindings/java/doxygen/Doxyfile +++ b/bindings/java/doxygen/Doxyfile @@ -39,7 +39,7 @@ PROJECT_NAME = "Sleuth Kit Java Bindings (JNI)" # control system is used. # NOTE: This is updated by the release-unix.pl script -PROJECT_NUMBER = 4.10.0 +PROJECT_NUMBER = 4.10.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a @@ -1050,7 +1050,7 @@ GENERATE_HTML = YES # This tag requires that the tag GENERATE_HTML is set to YES. # NOTE: This is updated by the release-unix.pl script -HTML_OUTPUT = jni-docs/4.10.0/ +HTML_OUTPUT = jni-docs/4.10.1/ # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). diff --git a/case-uco/java/nbproject/project.properties b/case-uco/java/nbproject/project.properties index eacaa254922f13f99b7ebfbd0e9eb13f27d84be3..d80f423e834e70e73c22ee1d33e48b6b2b870438 100644 --- a/case-uco/java/nbproject/project.properties +++ b/case-uco/java/nbproject/project.properties @@ -35,14 +35,14 @@ dist.javadoc.dir=${dist.dir}/javadoc endorsed.classpath= excludes= file.reference.gson-2.8.5.jar=lib/gson-2.8.5.jar -file.reference.sleuthkit-4.10.0.jar=lib/sleuthkit-4.10.0.jar +file.reference.sleuthkit-4.10.1.jar=lib/sleuthkit-4.10.1.jar includes=** jar.archive.disabled=${jnlp.enabled} jar.compress=false jar.index=${jnlp.enabled} javac.classpath=\ ${file.reference.gson-2.8.5.jar}:\ -${file.reference.sleuthkit-4.10.0.jar} +${file.reference.sleuthkit-4.10.1.jar} # Space-separated list of extra javac options javac.compilerargs=-Xlint javac.deprecation=false diff --git a/configure.ac b/configure.ac index 8e76b034703b9610b6f972743e441914b15ed83c..94c0c3b75cdd0841c3605b3092d397d5888817e1 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT(sleuthkit, 4.10.0) +AC_INIT(sleuthkit, 4.10.1) m4_include([m4/ax_pthread.m4]) dnl include the version from 1.12.1. This will work for m4_include([m4/cppunit.m4]) diff --git a/debian/changelog b/debian/changelog index bd9a1dbe3d50a60f453d194f39ace14d0b961e90..8748ae9fdfe2af3ecdc21a4024350e003060ab65 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -sleuthkit-java (4.10.0-1) unstable; urgency=medium +sleuthkit-java (4.10.1-1) unstable; urgency=medium * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP> diff --git a/debian/sleuthkit-java.install b/debian/sleuthkit-java.install index 7def1fbba803358845dc7f5b29ecfe8f2e1fac5e..8c0dc65cc6b9623a80fd327812e252e96f9f8f81 100644 --- a/debian/sleuthkit-java.install +++ b/debian/sleuthkit-java.install @@ -1,4 +1,4 @@ bindings/java/lib/sqlite-jdbc-3.25.2.jar /usr/share/java -bindings/java/dist/sleuthkit-4.10.0.jar /usr/share/java -case-uco/java/dist/sleuthkit-caseuco-4.10.0.jar /usr/share/java +bindings/java/dist/sleuthkit-4.10.1.jar /usr/share/java +case-uco/java/dist/sleuthkit-caseuco-4.10.1.jar /usr/share/java diff --git a/packages/sleuthkit.spec b/packages/sleuthkit.spec index ede52d5a7ae72ab81aa2c38b813e5f8b47b860da..beeb84b2cc3606964b36bf24b298aa165035424f 100644 --- a/packages/sleuthkit.spec +++ b/packages/sleuthkit.spec @@ -1,5 +1,5 @@ Name: sleuthkit -Version: 4.10.0 +Version: 4.10.1 Release: 1%{?dist} Summary: The Sleuth Kit (TSK) is a library and collection of command line tools that allow you to investigate volume and file system data. diff --git a/tsk/Makefile.am b/tsk/Makefile.am index a5dd8f2826cd1559a1cc33da0ba37b2958f88c63..d63c9ceb0c58b6b9773faf400a0c8e9571cb9808 100644 --- a/tsk/Makefile.am +++ b/tsk/Makefile.am @@ -8,6 +8,6 @@ libtsk_la_LIBADD = base/libtskbase.la img/libtskimg.la \ vs/libtskvs.la fs/libtskfs.la hashdb/libtskhashdb.la \ auto/libtskauto.la pool/libtskpool.la util/libtskutil.la # current:revision:age -libtsk_la_LDFLAGS = -version-info 20:2:1 $(LIBTSK_LDFLAGS) +libtsk_la_LDFLAGS = -version-info 20:3:1 $(LIBTSK_LDFLAGS) EXTRA_DIST = tsk_tools_i.h docs/Doxyfile docs/*.dox docs/*.html diff --git a/tsk/base/tsk_base.h b/tsk/base/tsk_base.h index a94cfa8e8d17a3360ec6237d0eded1e7a1f02a31..3dff8a5191d592479aa42a49faeeccdc4072851e 100644 --- a/tsk/base/tsk_base.h +++ b/tsk/base/tsk_base.h @@ -39,11 +39,11 @@ * 3.1.2b1 would be 0x03010201. Snapshot from Jan 2, 2003 would be * 0xFF030102. * See TSK_VERSION_STR for string form. */ -#define TSK_VERSION_NUM 0x041000ff +#define TSK_VERSION_NUM 0x041001ff /** Version of code in string form. See TSK_VERSION_NUM for * integer form. */ -#define TSK_VERSION_STR "4.10.0" +#define TSK_VERSION_STR "4.10.1" /* include the TSK-specific header file that we created in autoconf diff --git a/tsk/docs/Doxyfile b/tsk/docs/Doxyfile index ad5b9fb30045a24fc85abb03a06ed68c77d3cd8f..81d55ef3d021fa9ae3c8dc03d6002a1d5032e4b0 100644 --- a/tsk/docs/Doxyfile +++ b/tsk/docs/Doxyfile @@ -33,7 +33,7 @@ PROJECT_NAME = "The Sleuth Kit" # if some version control system is used. # This is automatically updated at release time. -PROJECT_NUMBER = 4.10.0 +PROJECT_NUMBER = 4.10.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer @@ -883,7 +883,7 @@ GENERATE_HTML = YES # put in front of it. If left blank `html' will be used as the default path. # NOTE: This is automatically updated at release time. -HTML_OUTPUT = api-docs/4.10.0/ +HTML_OUTPUT = api-docs/4.10.1/ # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank