From 8d6e21e70a08f13a51900e2a57e4c0f06d8e4e5e Mon Sep 17 00:00:00 2001 From: elifoster Date: Wed, 30 Sep 2015 10:44:07 -0700 Subject: [PATCH] New release 0.2.1. Fix gemspec --- CHANGELOG.md | 12 ++++++++++++ mediawiki-butt.gemspec | 5 +++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c49e4f..952875c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog ## Version 0 +### Version 0.2.1 +* Fix gemspec. You should actually have the new stuff now. + +### Version 0.2.0 +* New get_id method to get the pageid from the title. +* New get_random_pages method to get an array of random articles. +* New Namespace module full of constants. +* is_current_user_bot is now called as is_current_user_bot?. +* New get_edit_token method for obtaining an edit token based on the page title. +* New edit method and module for editing pages. +* Fix logout parsing error + ### Version 0.1.1 * Got rid of pointless array in is_current_user_bot * Potentially fixed docs diff --git a/mediawiki-butt.gemspec b/mediawiki-butt.gemspec index 853ec60..b5da537 100644 --- a/mediawiki-butt.gemspec +++ b/mediawiki-butt.gemspec @@ -5,10 +5,9 @@ deps = [ Gem::Specification.new do |s| s.authors = ['Eli Foster', 'Eric Schneider (xbony2)'] - s.files = Dir['lib/*'] s.name = 'mediawiki-butt' s.summary = "Interacting with the MediaWiki API" - s.version = '0.1.1' + s.version = '0.2.1' s.license = 'CC-BY-NC-ND-4.0' # Expand on this description eventually. s.description = <<-EOF @@ -27,6 +26,8 @@ Gem::Specification.new do |s| "lib/mediawiki/auth.rb", "lib/mediawiki/exceptions.rb", "lib/mediawiki/query.rb", + "lib/mediawiki/constants.rb", + "lib/mediawiki/edit.rb", "CHANGELOG.md" ]