Releases: jbevain/cecil
0.11.5
Cecil 0.11.5
is a bug fix release.
Companies using Cecil are now encouraged to sponsor Cecil's development.
This release closes the following issues:
- #776
- #787
- #781
- #782
- #801
- #810
- #817
- #823
- #824
- #827
- #843
- #851
- #852
- #854
- #867
- #869
- #870
- #871
- #879
- #882
- #885
- #888
Contributors:
- @tlakollo
- @SteveGilham
- @michaeljin89757
- @davidwrighton
- @AaronRobinsonMSFT
- @vitek-karas
- @MarcoRossignoli
- @Zastai
- @sbomer
- @Fantoom
- @mrvoorhe
- @joshpeterson
- @nulldatamap
Thanks to them!
0.11.4
Cecil 0.11.4
is a bug fix release.
Companies using Cecil are now encouraged to sponsor Cecil's development.
This release closes the following issues:
- #694
- #697
- #698
- #699
- #704
- #770
- #712
- #725
- #730
- #728
- #733
- #773
- #774
- #620
- #775
- #684
- #771
- #769
- #755
- #710
- #735
- #729
- #722
- #713
- #711
Contributors:
- @ltrzesniewski
- @SteveGilham
- @gdynamics
- @AnakinSklavenwalker
- @jkoritzinsky
- @Serg046
- @mrvoorhe
- @marek-safar
- @SimonCropp
Thanks to them!
0.11.3
Cecil 0.11.3
is a minor fix release.
Companies using Cecil are now encouraged to sponsor Cecil's development.
This release closes the following issues:
Contributors:
Thanks to them!
Cecil 0.11.2
Cecil 0.11.2
is a minor fix release.
Companies using Cecil are now encouraged to sponsor Cecil's development.
This release closes the following issues:
Contributors:
Cecil 0.11.1
Cecil 0.11.1
is a minor fix release.
Cecil 0.11.1
replaces the code used in Mono.Cecil.Pdb
from https://github.com/microsoft/cci under the MS/PL
to its version under the MIT/X11
. The entire Cecil code-base is now MIT/X11
licensed.
Cecil’s CI is now running on GitHub Actions.
Companies using Cecil are now encouraged to sponsor Cecil's development.
This release closes the following issues:
Contributors:
Cecil 0.11
Cecil 0.11 now ships for .NET 4.0
and .NET Standard 2.0
.
GenericParamConstraint
metadata table. Cecil introduces 0.11 a new type GenericParameterConstraint
to represent that relationship.
If previously you had code that looked like:
foreach (var type in genericParameter.Constraints)
{
// ...
}
You need to write:
foreach (var constraint in genericParameter.Constraints)
{
var type = constraint.ConstraintType;
// ...
}
This releases closes:
Contributors: