diff options
author | Christopher Faylor <me@cgf.cx> | 2003-04-21 04:31:06 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-04-21 04:31:06 +0000 |
commit | 99b1a40dc1d481abfa9bbe18d36dd1de3e458c3b (patch) | |
tree | 3a46724ae5c358e6b7bde00f319ab8a30302dbe7 | |
parent | beb5408583861fd314b51f3c3d2d0d2e6a93faf1 (diff) | |
download | cygnal-99b1a40dc1d481abfa9bbe18d36dd1de3e458c3b.tar.gz cygnal-99b1a40dc1d481abfa9bbe18d36dd1de3e458c3b.tar.bz2 cygnal-99b1a40dc1d481abfa9bbe18d36dd1de3e458c3b.zip |
* include/cygwin/version.h: Bump DLL major number to 5. Change DLL minor
number to 0. Bump API minor number.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/version.h | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index bc11a8ed2..544b57e2d 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2003-04-21 Christopher Faylor <cgf@redhat.com> + + * include/cygwin/version.h: Bump DLL major number to 5. Change DLL + minor number to 0. Bump API minor number. + 2003-04-20 Corinna Vinschen <corinna@vinschen.de> * autoload.cc (CreateWindowStationA): Add. diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h index e789ef695..b9deb5058 100644 --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -41,8 +41,8 @@ details. */ the Cygwin library". This version is used to track important changes to the DLL and is mainly informative in nature. */ -#define CYGWIN_VERSION_DLL_MAJOR 1003 -#define CYGWIN_VERSION_DLL_MINOR 23 +#define CYGWIN_VERSION_DLL_MAJOR 1005 +#define CYGWIN_VERSION_DLL_MINOR 0 /* Major numbers before CYGWIN_VERSION_DLL_EPOCH are incompatible. */ @@ -200,12 +200,13 @@ details. */ 81: CW_CHECK_NTSEC addition to external.cc 82: Export wcscoll wcswidth wcwidth 83: Export gethostid + 84: Pty open allocates invisible console. 64 bit interface */ /* Note that we forgot to bump the api for ualarm, strtoll, strtoull */ #define CYGWIN_VERSION_API_MAJOR 0 -#define CYGWIN_VERSION_API_MINOR 83 +#define CYGWIN_VERSION_API_MINOR 84 /* There is also a compatibity version number associated with the shared memory regions. It is incremented when incompatible |