Skip to content

Commit bfe9f40

Browse files
committed
Fixing Archive and PackageInfo.
1 parent c41a51c commit bfe9f40

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

PackageInfo.g

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Subtitle := "A permutation pattern class package",
3838
## See '?Extending: Version Numbers' in GAP help for an explanation
3939
## of valid version numbers. For an automatic package distribution update
4040
## you must provide a new version number even after small changes.
41-
Version := "2.0",
41+
Version := "2.1",
4242

4343
## Release date of the current version in dd/mm/yyyy format.
4444
##
@@ -53,7 +53,7 @@ Date := "27/08/2015",
5353
## example/init.g, ... or example-1.3/init.g, ... )
5454
#
5555
ArchiveURL :=
56-
"https://github.com/ruthhoffmann/PatternClass/releases/download/2.0/PatternClass2.0",
56+
"https://github.com/ruthhoffmann/PatternClass/releases/download/2.1/PatternClass2.1",
5757

5858
## All provided formats as list of file extensions, separated by white
5959
## space or commas.
@@ -260,8 +260,8 @@ PackageDoc := rec(
260260
# use same as in GAP
261261
BookName := "PatternClass",
262262
# format/extension can be one of .zoo, .tar.gz, .tar.bz2, -win.zip
263-
Archive :=
264-
"https://github.com/ruthhoffmann/PatternClass/releases/download/2.0/PatternClass2.0.tar.gz",
263+
# Archive :=
264+
# "https://github.com/ruthhoffmann/PatternClass/releases/download/2.1/PatternClass2.1.tar.gz",
265265
ArchiveURLSubset := ["doc"],
266266
HTMLStart := "doc/chap0.html",
267267
PDFFile := "doc/manual.pdf",

README

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ patched functions are located in lib/aux.* .
1212
Introduction
1313
------------
1414

15-
This is version 2.0 of the 'PatternClass' package.
15+
This is version 2.1 of the 'PatternClass' package.
1616

1717
The 'PatternClass' package allows you to explore the permutation
1818
pattern classes build by token passing networks.
@@ -52,12 +52,12 @@ If you get 'PatternClass' as a compressed file unpack it in the pkg/ folder
5252
in the gap4r4 folder where GAP is installed on your computer.
5353
To uncompress the .tar.gz file on UNIX use the following command
5454

55-
tar xzf PatternClass2.0.tar.gz
55+
tar xzf PatternClass2.1.tar.gz
5656

5757
If your version of tar does not support the z option use
5858

59-
gunzip PatternClass2.0.tar.gz
60-
tar xf PatternClass2.0.tar
59+
gunzip PatternClass2.1.tar.gz
60+
tar xf PatternClass2.1.tar
6161

6262
This will create the folder PatternClass in pkg/ and within that
6363
you will find the directories and files mentioned above.
@@ -66,7 +66,7 @@ To use the package within GAP, run GAP and type the following
6666

6767
gap> LoadPackage("PatternClass");
6868
----------------------------------------------------------------
69-
Loading PatternClass 2.0
69+
Loading PatternClass 2.1
7070
For help, type: ?PatternClass:
7171
----------------------------------------------------------------
7272
true
@@ -80,6 +80,11 @@ online or within GAP help.
8080

8181
Changes
8282
-------
83+
Changes from 2.0 to 2.1:
84+
- Removed all unnecessary files from the archive.
85+
- Fixed PackageInfo, such that no warnings are thrown.
86+
<<<>>><<<>>><<<>>><<<>>>
87+
8388
Changes from 1.12358132134 to 2.0:
8489
- Package is now being hosted on GitHub!
8590
- Updated maintainers details

doc/manual.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<TitlePage>
1010
<Title>PatternClass</Title>
1111
<Subtitle>Permutation Pattern Classes</Subtitle>
12-
<Version>Version 2.0</Version>
12+
<Version>Version 2.1</Version>
1313
<Author>Michael Albert <Email> malbert at cs.otago.ac.nz</Email></Author>
1414
<Author>Steve Linton <Email> sl4 at st-andrews.ac.uk</Email></Author>
1515
<Author>Ruth Hoffmann <Email> rh347 at icloud.com</Email></Author>

0 commit comments

Comments
 (0)