Skip to content

Commit

Permalink
Bump version number to 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Feb 13, 2024
1 parent 4369ca6 commit 8fa55cd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([yara], [4.4.0], [vmalvarez@virustotal.com])
AC_INIT([yara], [4.5.0], [vmalvarez@virustotal.com])

AM_SILENT_RULES([yes])
AC_CONFIG_SRCDIR([cli/yara.c])
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '4.4'
version = '4.5'
# The full version, including alpha/beta/rc tags.
release = '4.4.0'
release = '4.5.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/gettingstarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Compiling and installing YARA

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

tar -zxf yara-4.4.0.tar.gz
cd yara-4.4.0
tar -zxf yara-4.5.0.tar.gz
cd yara-4.5.0
./bootstrap.sh

Make sure you have ``automake``, ``libtool``, ``make`` and ``gcc`` and ``pkg-config`` installed in your system. Ubuntu and Debian users can use::
Expand Down
8 changes: 4 additions & 4 deletions docs/writingrules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ the C API.
Unreferenced strings
--------------------

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

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

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

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


Iterators
Expand Down
2 changes: 1 addition & 1 deletion libyara/include/yara/libyara.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <yara/utils.h>

#define YR_MAJOR_VERSION 4
#define YR_MINOR_VERSION 4
#define YR_MINOR_VERSION 5
#define YR_MICRO_VERSION 0

#define version_str(s) _version_str(s)
Expand Down

0 comments on commit 8fa55cd

Please sign in to comment.