Skip to content

Commit

Permalink
Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
hanna-kn committed May 7, 2024
1 parent 23a1e28 commit a5bd657
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-05-06 Hanna Knutsson <[email protected]>

* Fix a^(f(x))=a^(b*g(x)) where b=2 or b=3

2024-05-01 Hanna Knutsson <[email protected]>

* Avoid potential issues with equations and inequalities caused possibly modified comparison type property (primarily potentially resulting in AND instead of OR and vice versa)
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dnl ----------------------
dnl | initialize autotools |---------------------------------------------------
dnl ----------------------

AC_INIT([libqalculate],[5.1.0])
AC_INIT([libqalculate],[5.1.1])
AC_CONFIG_SRCDIR(libqalculate/Calculator.cc)
AM_INIT_AUTOMAKE
AC_CONFIG_HEADERS(config.h)
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places.
# The default value is: My Project.

PROJECT_NAME = libqalculate-5.1.0
PROJECT_NAME = libqalculate-5.1.1

# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
Expand Down
2 changes: 1 addition & 1 deletion libqalculate/Calculator-definitions.cc
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ int Calculator::loadDefinitions(const char* file_name, bool is_user_defs, bool c
xmlFreeDoc(doc);
return false;
}
int version_numbers[] = {5, 1, 0};
int version_numbers[] = {5, 1, 1};
parse_qalculate_version(version, version_numbers);

bool new_names = version_numbers[0] > 0 || version_numbers[1] > 9 || (version_numbers[1] == 9 && version_numbers[2] >= 4);
Expand Down
2 changes: 1 addition & 1 deletion libqalculate/includes.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#define QALCULATE_MAJOR_VERSION (5)
#define QALCULATE_MINOR_VERSION (1)
#define QALCULATE_MICRO_VERSION (0)
#define QALCULATE_MICRO_VERSION (1)

static std::string empty_string;

Expand Down
2 changes: 1 addition & 1 deletion src/qalc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7842,7 +7842,7 @@ void load_preferences() {
#endif


int version_numbers[] = {5, 1, 0};
int version_numbers[] = {5, 1, 1};

if(file) {
char line[10000];
Expand Down

0 comments on commit a5bd657

Please sign in to comment.