CHANGELOG.md in dbee-2.0.2 vs CHANGELOG.md in dbee-2.0.3
- old
+ new
@@ -1,4 +1,21 @@
+# 2.0.3 (January 7th, 2020)
+
+### Fixes:
+
+* Constant resolution will now explicitly set inherit to false when calling `Object#const_defined?` and `Object#const_get`. This should equate to less false positives. For example:
+
+```ruby
+class A; end
+
+module B
+ class A; end
+ class C; end
+end
+```
+
+If `B::A` is the desired class, it would not be suitable to just declare an association on `A` as that would resolve explicitly to `::A`. It also means C cannot be auto-resolved without prefixing/sharing the namespace with parent association `A`.
+
# 2.0.2 (November 7th, 2019)
### Additions:
* As of 2019-11-07, it is not recommended to use Ruby 2.3, but support was requested and added for Ruby 2.3.8. This is subject to being deprecated with next version.