Skip to content

Commit

Permalink
Update version numbers etc for v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-mitchell committed Aug 31, 2024
1 parent 52ccbbb commit 2b9b97a
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.0
1.9.0
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
/doc/*.css
/doc/*.js
Makefile
_*.xml
aclocal.m4
autom4te.*
bin/
Expand All @@ -52,11 +53,11 @@ depcomp
digraphs-config.h
digraphs-lib
doc/_*.xml
doc/main.xml
gen/
gh-pages/
manual.lab
missing
src/pkgconfig.h.in
tags
tst/out/
_*.xml
4 changes: 4 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Marina Anagnostopoulou-Merkouri <[email protected]> marinaanagno <66735004+
Finn Buck <[email protected]> Finnegan Buck <[email protected]>
Stuart Burrell <[email protected]> Stuart Burrell <[email protected]>
Reinis Cirpons <[email protected]> reiniscirpons <[email protected]>
Reinis Cirpons <[email protected]> Reinis Cirpons <[email protected]>
Reinis Cirpons <[email protected]> reiniscirpons <[email protected]>
Tom Conti-Leslie <[email protected]> Tom Conti-Leslie <[email protected]>
Tom Conti-Leslie <[email protected]> Tom Conti-Leslie <[email protected]>
Expand Down Expand Up @@ -33,6 +34,7 @@ Matthew Pancer <[email protected]> M Pancer <[email protected]
Daniel Pointon <[email protected]> <[email protected]>
Markus Pfeiffer <[email protected]> Markus Pfeiffer <[email protected]>
Markus Pfeiffer <[email protected]> Markus Pfeiffer <[email protected]>
Markus Pfeiffer <[email protected]> Markus Pfeiffer <[email protected]>
Lea Racine <[email protected]> LRacine <[email protected]>
Lea Racine <[email protected]> Lea Racine <[email protected]>
Lea Racine <[email protected]> Lea Racine <[email protected]>
Expand All @@ -45,4 +47,6 @@ Finn Smith <[email protected]> flsmith <[email protected]>
Maria Tsalakou <[email protected]> Maria Tsalakou <[email protected]>
Murray Whyte <[email protected]> MTWhyte <[email protected]>
Murray Whyte <[email protected]> Murray Whyte <[email protected]>
Meike Weiss <[email protected]> MeikeWeiss <[email protected]>
Wilf Wilson <[email protected]> Wilf Wilson <[email protected]>
",
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,42 @@ Wilf A. Wilson, Michael Young et al.

Licensing information can be found in the `LICENSE` file.

## Version 1.9.0 (released 31/08/2024)

* Update my web-address by @markuspf in
https://github.com/digraphs/Digraphs/pull/674
* Fix off by one error by @james-d-mitchell in
https://github.com/digraphs/Digraphs/pull/677
* Resolve issue #676 by @james-d-mitchell in
https://github.com/digraphs/Digraphs/pull/678
* Add hash function for digraphs by @reiniscirpons in
https://github.com/digraphs/Digraphs/pull/675
* kernel: use GAP's GVAR_FUNC macro by @fingolfin in
https://github.com/digraphs/Digraphs/pull/682
* Add DigraphAllChordlessCycles by @MeikeWeiss in
https://github.com/digraphs/Digraphs/pull/679
* Add DomainForAction mock for actions on digraphs by @reiniscirpons in
https://github.com/digraphs/Digraphs/pull/686
* doc: start using autodoc by @james-d-mitchell in
https://github.com/digraphs/Digraphs/pull/684
* Make Orb use digraph hashes by @reiniscirpons in
https://github.com/digraphs/Digraphs/pull/687
* Fix startup bug by @james-d-mitchell in
https://github.com/digraphs/Digraphs/pull/688
* Add `SubdigraphsMonomorphisms` by @james-d-mitchell in
https://github.com/digraphs/Digraphs/pull/690
* Added method AllUndirectedSimpleCircuits by @MeikeWeiss in
https://github.com/digraphs/Digraphs/pull/689
* Update for recent gaplint by @james-d-mitchell in
https://github.com/digraphs/Digraphs/pull/693

## New Contributors
* @MeikeWeiss made their first contribution in
https://github.com/digraphs/Digraphs/pull/679

**Full Changelog**:
https://github.com/digraphs/Digraphs/compare/v1.8.0...v1.9.0

## Version 1.8.0 (released 27/08/2024)

This release contains several improvements and bug fixes:
Expand Down
15 changes: 13 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ fi;
SetPackageInfo(rec(
PackageName := "Digraphs",
Subtitle := "Graphs, digraphs, and multidigraphs in GAP",
Version := "1.8.0",
Date := "27/08/2024", # dd/mm/yyyy format
Version := "1.9.0",
Date := "31/08/2024", # dd/mm/yyyy format
License := "GPL-3.0-or-later",
ArchiveFormats := ".tar.gz",

Expand Down Expand Up @@ -384,6 +384,17 @@ Persons := [
Place := "St Andrews",
Institution := "University of St Andrews"),

rec(
LastName := "Weiss",
FirstNames := "Meike",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "",
PostalAddress := "",
Place := "Aachen",
Institution := "RWTH-Aachen University"),

rec(
LastName := "Whyte",
FirstNames := "Murray",
Expand Down
1 change: 1 addition & 0 deletions VERSIONS
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#############################################################################
##

release 1.9.0 - 31/08/2024
release 1.8.0 - 27/08/2024
release 1.7.1 - 19/02/2024
release 1.7.0 - 14/02/2024
Expand Down
2 changes: 1 addition & 1 deletion release.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[authors]
expired_emails = ["[email protected]", "[email protected]", "[email protected]"]
author_files = ["PackageInfo.g"]
ignore = ["convert-repo", "dependabot"]
ignore = ["convert-repo", "dependabot", "Luke"]

0 comments on commit 2b9b97a

Please sign in to comment.