From 18cc4836691064e7560480f327417c00df664638 Mon Sep 17 00:00:00 2001 From: rstam Date: Tue, 7 Dec 2010 12:40:51 -0500 Subject: [PATCH] Set version number to 0.9.1.*. --- Bson/BsonConstants.cs | 13 ------------- Bson/ObjectModel/BsonMaxKey.cs | 3 --- Bson/ObjectModel/BsonMinKey.cs | 3 --- Bson/ObjectModel/BsonNull.cs | 3 --- GlobalAssemblyInfo.cs | 2 +- 5 files changed, 1 insertion(+), 23 deletions(-) diff --git a/Bson/BsonConstants.cs b/Bson/BsonConstants.cs index 012857a766..c63ff5061e 100644 --- a/Bson/BsonConstants.cs +++ b/Bson/BsonConstants.cs @@ -27,18 +27,5 @@ namespace MongoDB.Bson { #region public static properties public static DateTime UnixEpoch { get { return unixEpoch; } } #endregion - - #region obsolete members - [Obsolete("Use BsonBoolean.False instead (BsonConstants.False will be removed in version 0.9)")] - public static BsonBoolean False { get { return BsonBoolean.False; } } - [Obsolete("Use BsonMaxKey.Value instead (BsonConstants.MaxKey will be removed in version 0.9)")] - public static BsonMaxKey MaxKey { get { return BsonMaxKey.Value; } } - [Obsolete("Use BsonMinKey.Value instead (BsonConstants.MinKey will be removed in version 0.9)")] - public static BsonMinKey MinKey { get { return BsonMinKey.Value; } } - [Obsolete("Use BsonNull.Value instead (BsonConstants.Null will be removed in version 0.9)")] - public static BsonNull Null { get { return BsonNull.Value; } } - [Obsolete("Use BsonBoolean.True instead (BsonConstants.FalTruese will be removed in version 0.9)")] - public static BsonBoolean True { get { return BsonBoolean.True; } } - #endregion } } diff --git a/Bson/ObjectModel/BsonMaxKey.cs b/Bson/ObjectModel/BsonMaxKey.cs index 2d830243e4..6e68f9f652 100644 --- a/Bson/ObjectModel/BsonMaxKey.cs +++ b/Bson/ObjectModel/BsonMaxKey.cs @@ -33,9 +33,6 @@ namespace MongoDB.Bson { #endregion #region public static properties - [Obsolete("Use BsonMaxKey.Value instead (BsonMaxKey.Singleton will be removed in version 0.9)")] - public static BsonMaxKey Singleton { get { return singleton; } } - public static BsonMaxKey Value { get { return singleton; } } #endregion diff --git a/Bson/ObjectModel/BsonMinKey.cs b/Bson/ObjectModel/BsonMinKey.cs index 9deb20ac50..f66e6ecab9 100644 --- a/Bson/ObjectModel/BsonMinKey.cs +++ b/Bson/ObjectModel/BsonMinKey.cs @@ -33,9 +33,6 @@ namespace MongoDB.Bson { #endregion #region public static properties - [Obsolete("Use BsonMinKey.Value instead (BsonMinKey.Singleton will be removed in version 0.9)")] - public static BsonMinKey Singleton { get { return singleton; } } - public static BsonMinKey Value { get { return singleton; } } #endregion diff --git a/Bson/ObjectModel/BsonNull.cs b/Bson/ObjectModel/BsonNull.cs index 0ca9b6c2c2..a7bc833c1e 100644 --- a/Bson/ObjectModel/BsonNull.cs +++ b/Bson/ObjectModel/BsonNull.cs @@ -33,9 +33,6 @@ namespace MongoDB.Bson { #endregion #region public static properties - [Obsolete("Use BsonNull.Value instead (BsonNull.Singleton will be removed in version 0.9)")] - public static BsonNull Singleton { get { return singleton; } } - public static BsonNull Value { get { return singleton; } } #endregion diff --git a/GlobalAssemblyInfo.cs b/GlobalAssemblyInfo.cs index 21c91427aa..2a8ea7e928 100644 --- a/GlobalAssemblyInfo.cs +++ b/GlobalAssemblyInfo.cs @@ -37,4 +37,4 @@ using System.Runtime.InteropServices; // 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.9.0.3992")] +[assembly: AssemblyVersion("0.9.1.*")]