discordrb 3.1.0 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 63b47e7d0728741bab426ae48763d83324c2096d
4
- data.tar.gz: bc0bb96095c0f670d172c054673f78641dadc061
3
+ metadata.gz: 7243dd69686cf52feecca4bfe214758c7c3341c5
4
+ data.tar.gz: 85afc41eb200b3229e71c885d849c89a5ff31a03
5
5
  SHA512:
6
- metadata.gz: 64aa1b967a77ab2b0dc0d2ce1679436d2da83f2b332c803b2564c08eabef65ab65fb6499ea861cf9514f19cf77c76120f2b7b2f3eb5289b484e7031dc2c0f83e
7
- data.tar.gz: 928cebe04848e4aa4db8427c1e821f6a03dbade08bca3d7d7da0e13498f896bef996024e978826a2242c0cbf3c63115072e674ed808e5c1f81abf3dff44568ec
6
+ metadata.gz: 18911b18d0f2fb58539211affc6c735c5a63656cc35764249a0fb12e57a764ba2c5ff521c17a3f60006d6e5a685300114b6837c30697a43d79959988d11d9814
7
+ data.tar.gz: 398fc6c56a8781e4a6d7cacfe9677d20c5bc9b78f92a9f45fc382d47a39bb8359d440452e0316f480d65a445059d655a5fdc33e625097b87f418d907dc3c87b2
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.1.1
4
+
5
+ *Bugfix-only release.*
6
+
7
+ ### Bugfixes
8
+
9
+ - An oversight where a `GUILD_DELETE` dispatch would cause an internal error was fixed. ([#256](https://github.com/meew0/discordrb/pull/256), thanks @greenbigfrog)
10
+
3
11
  ## 3.1.0
4
12
 
5
13
  - Emoji handling support ([#226](https://github.com/meew0/discordrb/pull/226), thanks @greenbigfrog)
@@ -1093,8 +1093,8 @@ module Discordrb
1093
1093
  when :GUILD_DELETE
1094
1094
  delete_guild(data)
1095
1095
 
1096
- if d['unavailable'].is_a? TrueClass
1097
- LOGGER.warn("Server #{d['id']} is unavailable due to an outage!")
1096
+ if data['unavailable'].is_a? TrueClass
1097
+ LOGGER.warn("Server #{data['id']} is unavailable due to an outage!")
1098
1098
  return # Don't raise an event
1099
1099
  end
1100
1100
 
@@ -3,5 +3,5 @@
3
3
  # Discordrb and all its functionality, in this case only the version.
4
4
  module Discordrb
5
5
  # The current version of discordrb.
6
- VERSION = '3.1.0'.freeze
6
+ VERSION = '3.1.1'.freeze
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: discordrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - meew0
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-10-20 00:00:00.000000000 Z
11
+ date: 2016-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client