From 5fcbf4cfef087875a03359cce6c7d22f1f8a6774 Mon Sep 17 00:00:00 2001 From: Guillaume AGNIERAY Date: Fri, 14 Aug 2026 17:01:14 +0200 Subject: [PATCH] Update release script --- BUGS | 9 --------- ChangeLog | 21 --------------------- bin/release | 5 ++--- 3 files changed, 2 insertions(+), 33 deletions(-) delete mode 100644 BUGS delete mode 100644 ChangeLog diff --git a/BUGS b/BUGS deleted file mode 100644 index 8de8a34..0000000 --- a/BUGS +++ /dev/null @@ -1,9 +0,0 @@ -BUGS ----- - -You can see the buglist and make a report on GitHub : -https://github.com/galette-community/plugin-stripe/issues - - -Vous pouvez obtenir la liste des bugs et faire un rapport sur GitHub : -https://github.com/galette-community/plugin-stripe/issues diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 2f4d9b4..0000000 --- a/ChangeLog +++ /dev/null @@ -1,21 +0,0 @@ -* Coming changes - 1.0.0-dev -- Galette 1.2.0 compatible -- Check duplicate contributions -- Add link on dashboard -- Fix public payments -- Fix database reinitialization for mysql/mariadb -- Fix conflict with Paypal plugin on mysql/mariadb -- Fix postgresql script - -* 2024-01-18 - 0.3 -- Add CSRF exclusions -- Add correct route for history - -* 2021-02-10 - 0.2 -- Check contribution in webhook -- Change variables names to clarify implementation -- Change menu entry -- Add README instructions - -* 2021-02-10 - 0.1 -- First release diff --git a/bin/release b/bin/release index a0b3981..706904b 100755 --- a/bin/release +++ b/bin/release @@ -377,8 +377,6 @@ def add_libs(rel_name, galette_archive): shutil.rmtree(os.path.join(npm_dir, '.github')) shutil.rmtree(os.path.join(npm_dir, 'bin')) shutil.rmtree(os.path.join(npm_dir, 'tests')) - os.remove(os.path.join(npm_dir, 'composer.json.checker')) - os.remove(os.path.join(npm_dir, '.docheader')) os.remove(os.path.join(npm_dir, '.gitignore')) os.remove(os.path.join(npm_dir, '.php-cs-fixer.dist.php')) os.remove(os.path.join(npm_dir, 'phpstan.neon')) @@ -410,7 +408,8 @@ def add_libs(rel_name, galette_archive): # cleaunp files not required in releases todrop = [ 'composer.lock', - 'composer.json' + 'composer.json', + 'composer.json.checker' ] for td in todrop: if os.path.exists(os.path.join(src_dir, rel_name, td)):