Closed rossmills99 closed 11 months ago
@rossmills99 Is this release's Nuget package available?
@rossmills99 Is this release's Nuget package available?
Hey @Arash-Sabet , I would like to clarify the questions above with @rossmills99 before releasing this enhancement. We can get it out once done 👍
Depending on the outcome, it will be in a patch release, 2.0.2 or minor release 2.1.0
Hey @rossmills99 & @DiscoPYF
Do you happen to know when you're planning to release the patch or minor release as the enhancements in our side are pending for your changes.
Per discussion above we can release as 3.0.0 along with a couple of other recently added improvements. I can prepare a release to go out today.
@rossmills99 thanks for the prompt action.
@rossmills99 thanks for the prompt action.
No problem, thanks for the prompt 😄
The 3.0.0 package is now published in Nuget, you can view release notes here: https://github.com/ArangoDB-Community/arangodb-net-standard/releases/tag/3.0.0
Fix #484 by using IEnumerable in place of IList.
I've ended up expanding from the issue description to also update all places we used IList in interfaces and models.
As far as I can tell, this should not be a breaking change because every
IList<T>
is already anIEnumerable<T>
, butIEnumerable<T>
allows for greater flexibility in choice of the actual collection type implementations used.