Skip to content

Commit

Permalink
Update versions numbers etc for v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-mitchell committed Feb 14, 2024
1 parent f42f693 commit e777df0
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.3
1.7.0
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,40 @@ Wilf A. Wilson, Michael Young et al.

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

## Version 1.7.0 (released 14/02/2024)

This is a minor release with some new features, and some other improvements in
code quality.

## What's Changed
* Change test that relies on xpdf not being installed by @mtorpey in
https://github.com/digraphs/Digraphs/pull/578
* DigraphAbsorptionProbabilities by @mtorpey in
https://github.com/digraphs/Digraphs/pull/548
* Fix test files: strings and unbinds by @mtorpey in
https://github.com/digraphs/Digraphs/pull/579
* Add immediate methods for connected and strongly connected graphs by @mtorpey
in https://github.com/digraphs/Digraphs/pull/583
* kernel: fix mem leaks for permutations allocated but not freed. by
@james-d-mitchell in https://github.com/digraphs/Digraphs/pull/589
* Remove references to bin/gap.sh by @fingolfin in
https://github.com/digraphs/Digraphs/pull/597
* Fix prototype warnings by @fingolfin in
https://github.com/digraphs/Digraphs/pull/598
* Added EdgeWeightedDigraph by @RaiyanC in
https://github.com/digraphs/Digraphs/pull/575
* Add AbsorptionExpectedSteps by @mtorpey in
https://github.com/digraphs/Digraphs/pull/585
* Fix a typo by @fingolfin in https://github.com/digraphs/Digraphs/pull/608
* configure.ac: fix bashism in string equality test by @orlitzky in
https://github.com/digraphs/Digraphs/pull/613

## New Contributors
* @RaiyanC made their first contribution in https://github.com/digraphs/Digraphs/pull/575
* @orlitzky made their first contribution in https://github.com/digraphs/Digraphs/pull/613

**Full Changelog**: https://github.com/digraphs/Digraphs/compare/v1.6.3...v1.7.0

## Version 1.6.3 (released 13/09/2023)

This is a minor release with some bug fixes, and other issues resolved:
Expand Down
26 changes: 20 additions & 6 deletions PackageInfo.g
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
#############################################################################
##
## PackageInfo.g
## Copyright (C) 2015-23 James D. Mitchell
## Copyright (C) 2015-24 James D. Mitchell
##
## Licensing information can be found in the README.md file of this package.
##
#############################################################################
##

## <#GAPDoc Label="PKGVERSIONDATA">
## <!ENTITY VERSION "1.6.3">
## <!ENTITY VERSION "1.7.0">
## <!ENTITY GAPVERS "4.10.0">
## <!ENTITY GRAPEVERS "4.8.1">
## <!ENTITY IOVERS "4.5.1">
## <!ENTITY ORBVERS "4.8.2">
## <!ENTITY DATASTRUCTURESVERS "0.2.5">
## <!ENTITY NAUTYTRACESINTERFACEVERS "0.2">
## <!ENTITY ARCHIVENAME "digraphs-1.6.0">
## <!ENTITY COPYRIGHTYEARS "2014-22">
## <!ENTITY ARCHIVENAME "digraphs-1.7.0">
## <!ENTITY COPYRIGHTYEARS "2014-24">
## <#/GAPDoc>

_STANDREWSMATHS := Concatenation(["Mathematical Institute, North Haugh, ",
Expand All @@ -28,8 +28,8 @@ _STANDREWSCS := Concatenation(["Jack Cole Building, North Haugh, ",
SetPackageInfo(rec(
PackageName := "Digraphs",
Subtitle := "Graphs, digraphs, and multidigraphs in GAP",
Version := "1.6.3",
Date := "13/09/2023", # dd/mm/yyyy format
Version := "1.7.0",
Date := "14/02/2024", # dd/mm/yyyy format
License := "GPL-3.0-or-later",
ArchiveFormats := ".tar.gz",

Expand Down Expand Up @@ -91,6 +91,12 @@ Persons := [
IsAuthor := false,
IsMaintainer := false),

rec(
LastName := "Chowdhury",
FirstNames := "Raiyan",
IsAuthor := false,
IsMaintainer := false),

rec(
LastName := "Cirpons",
FirstNames := "Reinis",
Expand Down Expand Up @@ -234,6 +240,14 @@ Persons := [
Place := "St Andrews",
Institution := "University of St Andrews"),

rec(
LastName := "Orlitzky",
FirstNames := "Michael",
IsAuthor := false,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "https://michael.orlitzky.com/"),

rec(
LastName := "Pfeiffer",
FirstNames := "Markus",
Expand Down
3 changes: 2 additions & 1 deletion VERSIONS
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
#############################################################################
##
#W VERSIONS
#Y Copyright (C) 2015-23 James D. Mitchell
#Y Copyright (C) 2015-24 James D. Mitchell
##
## Licensing information can be found in the README.md file of this package.
##
#############################################################################
##

release 1.7.0 - 14/02/2024
release 1.6.3 - 13/09/2023
release 1.6.2 - 05/04/2023
release 1.6.1 - 06/12/2022
Expand Down
4 changes: 2 additions & 2 deletions release.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[authors]
expired_emails = ["[email protected]", "[email protected]"]
expired_emails = ["[email protected]", "[email protected]", "[email protected]"]
author_files = ["PackageInfo.g"]
ignore = ["convert-repo"]
ignore = ["convert-repo", "dependabot"]

0 comments on commit e777df0

Please sign in to comment.