Skip to content

Commit

Permalink
Update Version, Added Changelog. Small fix in Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
splattner committed Aug 29, 2018
1 parent 0b3fc73 commit 1209d3d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Changelog
## [Unreleased]

## [1.2.0] - 2018-08-29
## Fixed
- Make getMemberList() work on lists with few subscribers #1
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# mailmanAPI
A Simple PHP API to work with Mailman 2.x Mailinglists

As Mailman 2.x seems not to offer a proper API. This Mailman API provides some basic functionality to work with Mailman.
As Mailman 2.x seems not to offer a proper API, this Mailman API provides some basic functionality to work with Mailman.
Be aware, the library only wrappes around the HTML Forms of the Mailman API Site. It parses the HTTP Responses & HTML Pages, for Authentication Cookies, CSRF TOKEN and then posts to the FORM action url.

Testes with Mailman 2.1.20, no guarantee to work with other versions.
Expand All @@ -19,7 +19,7 @@ Testes with Mailman 2.1.20, no guarantee to work with other versions.

## Installation
```
composer require splattner/mailmanapi:^1.0
composer require splattner/mailmanapi:^1.2
```

## Usage
Expand Down Expand Up @@ -59,4 +59,3 @@ $mailman->removeMember(["[email protected]","[email protected]"]);
$mailman = new MailmanAPI($mailManBaseURL,$adminPW);
$mailman->changeMember("[email protected]","[email protected]");
```

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{

"name" : "splattner/mailmanapi",
"version" : "1.1.0",
"version" : "1.2.0",
"type" : "library",
"license": "MIT",
"description": "A simple API to work with Mailman 2.x Mailing Lists",
Expand Down

0 comments on commit 1209d3d

Please sign in to comment.