From b6ffd14adcf9c45b6a22ea913cb2db111e0e7c14 Mon Sep 17 00:00:00 2001 From: Alberto Demichelis Date: Mon, 4 Nov 2024 00:51:16 +0100 Subject: [PATCH] updated HISTORY --- HISTORY | 7 +++++-- include/squirrel.h | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/HISTORY b/HISTORY index e5ff78a..b1c1463 100644 --- a/HISTORY +++ b/HISTORY @@ -1,3 +1,8 @@ +***version 3.3 stable*** +-implemented faster string concatenation that doesn't copy the strings before hashing +-fixed security vulnerability in scratchpad(thx Radnai L.) + +***2022-02-10 *** ***version 3.2 stable*** -added new inline bind env syntax for closures -added sq_tailcall @@ -6,7 +11,6 @@ -added table.keys() and table.values() -added table.filter() -added skipempty in split() --implemented faster string concatenation that doesn't copy the strings before hashing -additional parameters in array.map() and array.apply() -additional optional initializer in array.reduce() -added sqstd_pushstringf and sqstd_throwerrorf @@ -18,7 +22,6 @@ -sq_gettypetag doesn't set last error(it's treated as SQBool function but keeps a SQRESULT for backward compatibility) -fixed _set method in userdata delegates -fixed some warnings --fixed security vulnerability in scratchpad(thx Radnai L.) ***2016-03-27 *** ***version 3.1 stable*** diff --git a/include/squirrel.h b/include/squirrel.h index fe9d4d1..251128a 100644 --- a/include/squirrel.h +++ b/include/squirrel.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2022 Alberto Demichelis +Copyright (c) 2003-2024 Alberto Demichelis Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -66,7 +66,7 @@ struct SQOuter; #include "sqconfig.h" #define SQUIRREL_VERSION _SC("Squirrel 3.2 stable") -#define SQUIRREL_COPYRIGHT _SC("Copyright (C) 2003-2022 Alberto Demichelis") +#define SQUIRREL_COPYRIGHT _SC("Copyright (C) 2003-2024 Alberto Demichelis") #define SQUIRREL_AUTHOR _SC("Alberto Demichelis") #define SQUIRREL_VERSION_NUMBER 320