Skip to content

Commit

Permalink
Bump version to 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Aug 20, 2020
1 parent b3d8567 commit b1d8695
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion dmc_unrar.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,15 @@

/* Version history:
*
* Someday, ????-??-?? (Version ?)
* Friday, 2020-07-21 (Version 1.7.0)
* - Changed internal I/O interface to be more flexible
* - Added Win32 direct file access
* - Wrapped FILE* for dmc_unrar_archive_open_file() on Windows
* - Added a macro to optionally use fseeko/ftello instead of fseek/ftell,
* by default used on 32-bit macOS and 32-bit glibc builds
* - Replaced size_t with our own type to help with large file support
* - Added support for large files (>= 2GB)
* - Added version number #defines. Better late than never!
*
* Monday, 2019-08-12 (Version 1.6.0)
* - Implemented the Itanium filter
Expand Down Expand Up @@ -464,6 +465,12 @@ typedef int (*dmc_unrar_seek_func)(void *opaque, dmc_unrar_offset_t
extern "C" {
#endif

#define DMC_UNRAR_VERSION "1.7.0"
#define DMC_UNRAR_VERSION_MAJOR 1
#define DMC_UNRAR_VERSION_MINOR 7
#define DMC_UNRAR_VERSION_PATCH 0
#define DMC_UNRAR_VERSION_FULL ( (DMC_UNRAR_VERSION_MAJOR * 100000) + (DMC_UNRAR_VERSION_MINOR * 10000) + (DMC_UNRAR_VERSION_PATCH) )

/** The return code of a dmc_unrar operation. See dmc_unrar_strerror(). */
typedef enum {
DMC_UNRAR_OK = 0,
Expand Down

0 comments on commit b1d8695

Please sign in to comment.