Skip to content

Commit 1a2b176

Browse files
Update changelog and bump version number to v2.0
1 parent f45943a commit 1a2b176

File tree

7 files changed

+17
-11
lines changed

7 files changed

+17
-11
lines changed

AwstatsParser/AwstatsFile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/*
33
Awstats Data File Parser / Merger / Generator
4-
@version: 1.4.1
5-
@date: 2020-01-20
4+
@version: 2.0
5+
@date: 2025-09-23
66
@author: Aaron van Geffen
77
@website: https://aaronweb.net/
88
@license: BSD

AwstatsParser/AwstatsFromFile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/*
33
Awstats Data File Parser / Merger / Generator
4-
@version: 1.4.1
5-
@date: 2020-01-20
4+
@version: 2.0
5+
@date: 2025-09-23
66
@author: Aaron van Geffen
77
@website: https://aaronweb.net/
88
@license: BSD

AwstatsParser/AwstatsMerger.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/*
33
Awstats Data File Parser / Merger / Generator
4-
@version: 1.4.1
5-
@date: 2020-01-20
4+
@version: 2.0
5+
@date: 2025-09-23
66
@author: Aaron van Geffen
77
@website: https://aaronweb.net/
88
@license: BSD

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# AwstatsParser changelog
22

3+
## version 2.0 (2025-09-23)
4+
* Sections are now processed as-needed, reducing memory requirements.
5+
* Fix package autoload path in example merge script (GitHub#4).
6+
* Fix merging http error sections with placeholder values (GitHub#5).
7+
* Deprecated: AwstatsFromFile is no longer used as an interface. Use AwstatsFile directly.
8+
39
## version 1.4.1 (2020-01-20)
410
* Change braces to brackets to address a PHP 7.4 deprecation warning.
511

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ This package contains a series of classes to help read and merge Awstats data fi
88

99
The package contains three classes:
1010

11-
* `AwstatsFromFile`, used to read existing Awstats statistics from file;
11+
* `AwstatsFile`, used to read existing Awstats statistics from file;
1212
* `AwstatsMerger`, used to merges instances of `AwstatsFile`;
13-
* `AwstatsFile`, which is an abstract class used to generalise the two.
13+
* `AwstatsFromFile`, a deprecated interface class.
1414

1515

1616
## Merging files

awmerge.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/*
33
Awstats Data File Parser / Merger / Generator
4-
@version: 1.4.1
5-
@date: 2020-01-20
4+
@version: 2.0
5+
@date: 2025-09-23
66
@author: Aaron van Geffen
77
@website: https://aaronweb.net/
88
@license: BSD

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"require": {
17-
"php": ">=5.3.0"
17+
"php": ">=8.0"
1818
},
1919
"autoload": {
2020
"classmap": ["AwstatsParser/"]

0 commit comments

Comments
 (0)