Skip to content

Commit 8fa55cd

Browse files
committed
Bump version number to 4.5.0
1 parent 4369ca6 commit 8fa55cd

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([yara], [4.4.0], [[email protected]])
1+
AC_INIT([yara], [4.5.0], [[email protected]])
22

33
AM_SILENT_RULES([yes])
44
AC_CONFIG_SRCDIR([cli/yara.c])

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '4.4'
54+
version = '4.5'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '4.4.0'
56+
release = '4.5.0'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

docs/gettingstarted.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Compiling and installing YARA
1212

1313
Download the source tarball and get prepared for compiling it::
1414

15-
tar -zxf yara-4.4.0.tar.gz
16-
cd yara-4.4.0
15+
tar -zxf yara-4.5.0.tar.gz
16+
cd yara-4.5.0
1717
./bootstrap.sh
1818

1919
Make sure you have ``automake``, ``libtool``, ``make`` and ``gcc`` and ``pkg-config`` installed in your system. Ubuntu and Debian users can use::

docs/writingrules.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ the C API.
741741
Unreferenced strings
742742
--------------------
743743

744-
YARA 4.4.0 allows for unreferenced strings in the condition. If a string
744+
YARA 4.5.0 allows for unreferenced strings in the condition. If a string
745745
identifier starts with an ``_`` then it does not have to be referenced in the
746746
condition. Any other string must be referenced in the condition. This is useful
747747
if you want to search for particular strings and handle them in a custom
@@ -1340,7 +1340,7 @@ using the syntax: @a[i], where i is an index indicating which occurrence
13401340
of the string $a you are referring to. (@a[1], @a[2],...).
13411341

13421342
Sometimes you will need to iterate over some of these offsets and guarantee
1343-
they satisfy a given condition. In such cases you can use the ``for..in`` syntax,
1343+
they satisfy a given condition. In such cases you can use the ``for..in`` syntax,
13441344
for example:
13451345

13461346
.. code-block:: yara
@@ -1387,8 +1387,8 @@ applies here:
13871387
for 2 i in (1..#a) : ( @a[i] < 100 )
13881388

13891389
The ``for..in`` operator is similar to ``for..of``, but the latter iterates over
1390-
a set of strings, while the former iterates over ranges, enumerations, arrays and
1391-
dictionaries.
1390+
a set of strings, while the former iterates over ranges, enumerations, arrays and
1391+
dictionaries.
13921392

13931393

13941394
Iterators

libyara/include/yara/libyara.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3333
#include <yara/utils.h>
3434

3535
#define YR_MAJOR_VERSION 4
36-
#define YR_MINOR_VERSION 4
36+
#define YR_MINOR_VERSION 5
3737
#define YR_MICRO_VERSION 0
3838

3939
#define version_str(s) _version_str(s)

0 commit comments

Comments
 (0)