Skip to content

Commit 5040324

Browse files
authored
Merge pull request #1628 from reactiveui/develop
Ship ReactiveUI v8.0.1 (v2)
2 parents c2e58fa + c66674b commit 5040324

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/EventBuilder/Platforms/XamForms.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public XamForms()
3939

4040
var packageManager = new PackageManager(repo, packageUnzipPath);
4141

42-
var package = repo.FindPackagesById(_packageName).Single(x => x.IsLatestVersion);
42+
var package = repo.FindPackagesById(_packageName).Single(x => x.Version.ToString() == "2.5.1.444934");
4343

4444
Log.Debug("Using Xamarin Forms {Version} released on {Published}", package.Version, package.Published);
4545
Log.Debug("{ReleaseNotes}", package.ReleaseNotes);

src/ReactiveUI.Tests/API/ApiApprovalTests.ReactiveUI.approved.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,8 +599,8 @@ namespace ReactiveUI
599599
public virtual void Move(int oldIndex, int newIndex) { }
600600
protected void MoveItem(int oldIndex, int newIndex) { }
601601
protected virtual void publishResetNotification() { }
602-
protected virtual void raiseCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { }
603-
protected virtual void raiseCollectionChanging(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { }
602+
protected virtual void raiseCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { }
603+
protected virtual void raiseCollectionChanging(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { }
604604
public virtual bool Remove(T item) { }
605605
public virtual void RemoveAll(System.Collections.Generic.IEnumerable<T> items) { }
606606
public virtual void RemoveAt(int index) { }

src/ReactiveUI/ReactiveList.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@ public event NotifyCollectionChangedEventHandler CollectionChanged
7777
remove { CollectionChangedEventManager.RemoveHandler(this, value); }
7878
}
7979

80-
protected virtual void raiseCollectionChanging(NotifyCollectionChangedEventArgs e)
80+
protected virtual void raiseCollectionChanging(NotifyCollectionChangedEventArgs args)
8181
{
82-
CollectionChangingEventManager.DeliverEvent(this, e);
82+
CollectionChangingEventManager.DeliverEvent(this, args);
8383
}
8484

85-
protected virtual void raiseCollectionChanged(NotifyCollectionChangedEventArgs e)
85+
protected virtual void raiseCollectionChanged(NotifyCollectionChangedEventArgs args)
8686
{
87-
CollectionChangedEventManager.DeliverEvent(this, e);
87+
CollectionChangedEventManager.DeliverEvent(this, args);
8888
}
8989

9090
public event PropertyChangingEventHandler PropertyChanging

0 commit comments

Comments
 (0)