From f36899a2ece116d7a691b7dfc6221b9151f9eb50 Mon Sep 17 00:00:00 2001 From: Dan Pock Date: Thu, 29 Jul 2021 13:53:16 -0400 Subject: [PATCH] docs: update readme and changelog for release --- CHANGELOG.md | 20 ++------------------ README.md | 9 ++++++--- 2 files changed, 8 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c46cf81..52c063e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,24 +5,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## 0.1.0 - TBD +## 1.0.0 - 2021-07-29 ### Added -- Nothing. - -### Changed - -- Nothing. - -### Deprecated - -- Nothing. - -### Removed - -- Nothing. - -### Fixed - -- Nothing. +- Release first stable version of new package. diff --git a/README.md b/README.md index 856db6b..34b71f3 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,6 @@ This package facilitates the discovery of the authoritative WHOIS server for top level domains. There are two lists to source the WHOIS server info from; the IANA TLD list and the Public Suffix List. -The lists used by this package generate using the script in the `./generator` directory. -This script will download a fresh copy of the list, then look up every TLDs whois server. - This project adheres to a [code of conduct](CODE_OF_CONDUCT.md). By participating in this project and its community, you are expected to uphold this code. @@ -50,6 +47,12 @@ $ianaLocator = new IanaServerLocator(); echo $ianaLocator->getWhoisServer('aarp'); // whois.nic.aarp ``` +## Updating + +The lists used by this package generate using the script in the `./generator` directory. +This script will download a fresh copy of the list, then look up every TLDs whois server. + +To update the list one would simply: clone this repo, run the generator, commit the changes and send a Pull Request. ## Contributing