From ff543f5fe851fd51ab11d6e343897a237e6151a6 Mon Sep 17 00:00:00 2001 From: webimpress Date: Thu, 17 Oct 2019 17:25:47 +0100 Subject: [PATCH 1/3] Update mkdocs configuration - remove redundant docs/book/index.html - remove copyright notes as these are pulled from template - add Home page title - update Intro to Introduction page title - update description - use nav instead of deprecated pages --- docs/book/index.html | 12 ------------ mkdocs.yml | 9 ++++----- 2 files changed, 4 insertions(+), 17 deletions(-) delete mode 100644 docs/book/index.html diff --git a/docs/book/index.html b/docs/book/index.html deleted file mode 100644 index 957af62b1..000000000 --- a/docs/book/index.html +++ /dev/null @@ -1,12 +0,0 @@ -
-
-

zend-ldap

- -

- Perform LDAP operations, including binding, searching and modifying entries in an LDAP directory. -

- -
$ composer require zendframework/zend-ldap
-
-
- diff --git a/mkdocs.yml b/mkdocs.yml index dc831260b..7d75fd567 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,8 +1,8 @@ docs_dir: docs/book site_dir: docs/html -pages: - - index.md - - Intro: intro.md +nav: + - Home: index.md + - Introduction: intro.md - Reference: - "API overview": api.md - "Usage Scenarios": usage.md @@ -11,6 +11,5 @@ pages: - "Getting information from the LDAP server": server.md - "Serializing LDAP data to and from LDIF": ldif.md site_name: zend-ldap -site_description: zend-ldap +site_description: "Provides support for LDAP operations including but not limited to binding, searching and modifying entries in an LDAP directory" repo_url: 'https://github.com/zendframework/zend-ldap' -copyright: 'Copyright (c) 2005-2018 Zend Technologies USA Inc.' From 7c5174ea5136bcfe0f52b250dd24b1ed682fd57f Mon Sep 17 00:00:00 2001 From: webimpress Date: Thu, 17 Oct 2019 17:26:02 +0100 Subject: [PATCH 2/3] Update copyright year in LICENSE.md --- LICENSE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE.md b/LICENSE.md index d44ab5dc7..4bc22a4a4 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright (c) 2005-2018, Zend Technologies USA, Inc. +Copyright (c) 2005-2019, Zend Technologies USA, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, From 4488e9eb14c1be3b6d2812ffab139e696d694496 Mon Sep 17 00:00:00 2001 From: webimpress Date: Thu, 17 Oct 2019 17:26:13 +0100 Subject: [PATCH 3/3] release: 2.10.1 readiness --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88adb23d4..631e3b326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file, in reverse chronological order by release. -## 2.10.1 - TBD +## 2.10.1 - 2019-10-17 ### Added