From 56f3bdedb42d26bee1532cc01baf5eaf44a9aa23 Mon Sep 17 00:00:00 2001 From: mio Date: Tue, 22 Nov 2022 21:55:02 +0100 Subject: [PATCH 1/3] Update ChangeLog --- ChangeLog | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 224883de..0e7113d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,15 @@ This file details the changelog of Unicorn Engine. +------------------------------- +[Version 2.0.1.post1]: Nov 22nd, 2022 + +This is a small release to complement the previous 2.0.1 release. + +Fix: + +- Fix the endianness detection in tests. +- Fix the version number in CMakeLists.txt. + ------------------------------- [Version 2.0.1]: Nov 1st, 2022 From 7b8c63dfe650b5d4d2bf684526161971925e6350 Mon Sep 17 00:00:00 2001 From: lazymio Date: Tue, 7 Feb 2023 10:44:36 +0100 Subject: [PATCH 2/3] Exclude enhancement and bug issues --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 04c46b3e..214472cf 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -14,5 +14,5 @@ jobs: days-before-stale: 60 days-before-close: 15 exempt-all-milestones: true - exempt-issue-labels: 'pinned,help wanted' + exempt-issue-labels: 'pinned,help wanted,enhancement,bug' exempt-pr-labels: 'pinned' From d504e3a004a594bc96e163ba691ad8ed1e9d389b Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Wed, 22 Mar 2023 13:57:12 -0500 Subject: [PATCH 3/3] build: Fixes for Haiku * Haiku is fully posix, so can be lumped together with most unix cases --- glib_compat/grand.c | 4 ++-- tests/unit/acutest.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/glib_compat/grand.c b/glib_compat/grand.c index b6e57645..0d3f95b4 100644 --- a/glib_compat/grand.c +++ b/glib_compat/grand.c @@ -232,7 +232,7 @@ GRand *g_rand_new_with_seed_array (const guint32 *seed, guint seed_length) gint64 g_get_real_time (void) { -#if defined(unix) || defined(__unix__) || defined(__unix) || defined (__MINGW32__) || defined(__APPLE__) +#if defined(unix) || defined(__unix__) || defined(__unix) || defined (__MINGW32__) || defined(__APPLE__) || defined(__HAIKU__) struct timeval r; /* this is required on alpha, there the timeval structs are ints @@ -271,7 +271,7 @@ gint64 g_get_real_time (void) GRand *g_rand_new (void) { guint32 seed[4]; -#if defined(unix) || defined(__unix__) || defined(__unix) || defined(__APPLE__) +#if defined(unix) || defined(__unix__) || defined(__unix) || defined(__APPLE__) || defined(__HAIKU__) static gboolean dev_urandom_exists = TRUE; if (dev_urandom_exists) diff --git a/tests/unit/acutest.h b/tests/unit/acutest.h index 6b4d596d..fbe55bc2 100644 --- a/tests/unit/acutest.h +++ b/tests/unit/acutest.h @@ -270,7 +270,7 @@ #include #include -#if defined(unix) || defined(__unix__) || defined(__unix) || defined(__APPLE__) +#if defined(unix) || defined(__unix__) || defined(__unix) || defined(__APPLE__) || defined(__HAIKU__) #define ACUTEST_UNIX_ 1 #include #include