diff --git a/CHANGELOG.md b/CHANGELOG.md
index 420388e907ab7d58f9fbc3ebb81d6d0a645d5400..7e9179fa55a4e33c9d3a46c2e334df0518179c76 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,8 @@
 * Added testing with significant coverage
 * Fixed IGate so it wont get stuck in an infinite loop when receiving data faster than it can process
 * Added EMPTY_PATH constant to represent a path with 0 hops.
+* Fixed bad bindir in gemspec.
+* Updated project owner's email address.
 
 ## 1.0.4
 
diff --git a/apex-aprs.gemspec b/apex-aprs.gemspec
index 9b69ce3c2293cbdc91716640c9802be1475281e7..8aa879830088e65d3530a9227c4494d57a9ea46b 100644
--- a/apex-aprs.gemspec
+++ b/apex-aprs.gemspec
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
     spec.version = Apex::VERSION
     spec.licenses = ['Apache-2.0']
     spec.authors = ['Jeffrey Phillips Freeman']
-    spec.email = ['jeffrey.freeman@syncleus.com']
+    spec.email = ['the@jeffreyfreeman.me']
 
     spec.summary = %q{Library for APRS, Automatic Packet Reporting System, communications including the next-generation APEX extensions. Includes an APRS-IS client.}
     spec.description = %q{Ruby library for APRS, Automatic Packet Reporting System, communications including the next-generation APEX extensions. Includes an APRS-IS client.}
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
     spec.files = `git ls-files -z`.split("\x0").reject do |f|
         f.match(%r{^(test|spec|features)/})
     end
-    spec.bindir = 'exe'
+    spec.bindir = 'bin'
     spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
     spec.require_paths = ['lib']