Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
porres committed Feb 4, 2024
1 parent 79701b3 commit 4914101
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
6 changes: 3 additions & 3 deletions cyclone_objects/binaries/cyclone_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -630,18 +630,18 @@ static int printed;

static int min_major = 0;
static int min_minor = 54;
static int min_bugfix = 0;
static int min_bugfix = 1;

static int cyclone_major = 0;
static int cyclone_minor = 8;
static int cyclone_bugfix = 0;
static int cyclone_bugfix = 1;

void print_cyclone(t_cyclone *x){
int major = 0, minor = 0, bugfix = 0;
sys_getversion(&major, &minor, &bugfix);
post("");
post("--------------------------------------------------------------------");
post(":: Cyclone %d.%d-%d; Released October 22nd 2023", cyclone_major, cyclone_minor, cyclone_bugfix);
post(":: Cyclone %d.%d-%d; Released February 8th 2024", cyclone_major, cyclone_minor, cyclone_bugfix);
post(":: License: BSD-3-Clause (aka Revised BSD License)");
post(":: Copyright © 2003-2021 - Krzysztof Czaja, Hans-Christoph Steiner,");
post(":: Fred Jan Kraan, Alexandre Porres, Derek Kwan, Matt Barber\n\:: and others.");
Expand Down
7 changes: 7 additions & 0 deletions documentation/extra_files/CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
| Under the maintenance of Porres, Kwan and Barber:
---------------------------------------------------

--------------------------------------------------
cyclone 0.8-1 (needs at least Pd Vanilla 0.54-1):
--------------------------------------------------

- [phaseshift~]: Fix div-by-zero and potential blow up
- [zl]: allow creating as zl.modename, fixed some blowing up and creation bugs

--------------------------------------------------
cyclone 0.8-0 (needs at least Pd Vanilla 0.54-0):
--------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions documentation/extra_files/cyclone-meta.pd
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
#X text 26 194 HELP_PATCHES_AUTHOR: Alexandre Torres Porres, f 60;
#X text 26 165 CURRENT DEVELOPERS (since february 2016): Alexandre Torres Porres \, Derek Kwan and Matt Barber, f 60;
#X text 26 135 FOLLOWING DEVELOPERS: Hans-Christoph Steiner (2005-2013) and Fred Jan Kraan (dec/2014 - feb/2016);
#X text 26 66 VERSION: 0.8-0, f 60;
#X text 26 84 RELEASE_DATE: Released October 22nd 2023, f 60;
#X text 26 66 VERSION: 0.8-1, f 60;
#X text 26 84 RELEASE_DATE: Released February 8th 2024, f 60;

0 comments on commit 4914101

Please sign in to comment.