Skip to content

Commit

Permalink
Merge pull request #614 from realm/release/0.76.0
Browse files Browse the repository at this point in the history
Release 0.76.0
  • Loading branch information
kristiandupont committed Jun 9, 2016
2 parents 450bef8 + e68487c commit 6659136
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 14 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
0.76.0 (2016-06-09)
-------------------

### Major Changes
* `RealmObject` classes will now implicitly implement `INotifyPropertyChanged` if you specify the interface on your class. Thanks to [Joe Brock](https://github.com/jdbrock) for this contribution!

### Minor Changes
* `long` is supported in queries
* Linker error looking for `System.String System.String::Format(System.IFormatProvider,System.String,System.Object)` fixed
* Second-level descendants of `RealmObject` and static properties in `RealmObject` classes now cause the weaver to properly report errors as we don't (yet) support those.
* Calling `.Equals()` on standalone objects no longer throws.


0.75.0 (2016-06-02)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions Realm.PCL/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("0.75.0.0")]
[assembly: AssemblyFileVersion("0.75.0.0")]
[assembly: AssemblyVersion(("0.76.0.0"))]
[assembly: AssemblyFileVersion(("0.76.0.0"))]
4 changes: 2 additions & 2 deletions Realm.Win32/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.75.0.0")]
[assembly: AssemblyFileVersion("0.75.0.0")]
[assembly: AssemblyVersion(("0.76.0.0"))]
[assembly: AssemblyFileVersion(("0.76.0.0"))]
4 changes: 2 additions & 2 deletions Realm.XamarinAndroid/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.75.0.0")]
[assembly: AssemblyFileVersion("0.75.0.0")]
[assembly: AssemblyVersion(("0.76.0.0"))]
[assembly: AssemblyFileVersion(("0.76.0.0"))]
4 changes: 2 additions & 2 deletions Realm.XamarinIOS/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("0.75.0.0")]
[assembly: AssemblyFileVersion("0.75.0.0")]
[assembly: AssemblyVersion(("0.76.0.0"))]
[assembly: AssemblyFileVersion(("0.76.0.0"))]
4 changes: 2 additions & 2 deletions RealmWeaver/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
[assembly: AssemblyCopyright("Copyright © 2016 Realm")]
[assembly: AssemblyCompany("Realm Inc.")]

[assembly: AssemblyVersion("0.75.0.0")]
[assembly: AssemblyFileVersion("0.75.0.0")]
[assembly: AssemblyVersion("0.76.0.0")]
[assembly: AssemblyFileVersion("0.76.0.0")]
2 changes: 1 addition & 1 deletion Tests/WeaverTests/RealmWeaver.Tests/packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Fody" version="1.29.4" targetFramework="net45" developmentDependency="true" />
<package id="FodyCecil" version="1.29.4" targetFramework="net45" developmentDependency="true" userInstalled="true" />
<package id="Fody" version="1.29.2" targetFramework="net45" developmentDependency="true" />
<package id="NUnit" version="3.2.1" targetFramework="net45" />
<package id="PropertyChanged.Fody" version="1.51.0" targetFramework="net45" developmentDependency="true" />
</packages>
6 changes: 3 additions & 3 deletions component/component.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ samples:
publisher-url: https://www.realm.io
packages:
android:
- Realm, Version=0.74.1
- Realm, Version=0.76.0
ios-unified:
- Realm, Version=0.74.1
version: 0.74.1
- Realm, Version=0.76.0
version: 0.76.0
...

0 comments on commit 6659136

Please sign in to comment.