Skip to content

Commit

Permalink
Bumped version to 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dreampiggy committed Sep 29, 2020
1 parent 00ebd45 commit 5e73e98
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "libde265",
platforms: [
.macOS(.v10_10), .iOS(.v9), .tvOS(.v9), .watchOS(.v2)
.macOS(.v10_10), .iOS(.v8), .tvOS(.v9), .watchOS(.v2)
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
Expand Down
2 changes: 1 addition & 1 deletion Xcode/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0.6</string>
<string>1.0.7</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
4 changes: 2 additions & 2 deletions include/libde265/de265-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
#define LIBDE265_VERSION_H

/* Numeric representation of the version */
#define LIBDE265_NUMERIC_VERSION 0x01000600
#define LIBDE265_NUMERIC_VERSION 0x01000700

/* Version string */
#define LIBDE265_VERSION "1.0.6"
#define LIBDE265_VERSION "1.0.7"

#endif
6 changes: 3 additions & 3 deletions libde265.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'libde265'
s.version = '1.0.6'
s.version = '1.0.7'
s.summary = 'Open h.265 video codec implementation.'

# This description is used to generate tags and improve search results.
Expand Down Expand Up @@ -39,8 +39,8 @@ It is written from scratch and has a plain C API to enable a simple integration
# config the libde265 build version string in `de265_version.h`, update when bumped version
s.prepare_command = <<-CMD
cp './libde265/de265-version.h.in' './libde265/de265-version.h'
sed -i.bak 's/@NUMERIC_VERSION@/0x01000600/g' './libde265/de265-version.h'
sed -i.bak 's/@PACKAGE_VERSION@/1.0.6/g' './libde265/de265-version.h'
sed -i.bak 's/@NUMERIC_VERSION@/0x01000700/g' './libde265/de265-version.h'
sed -i.bak 's/@PACKAGE_VERSION@/#{s.version}/g' './libde265/de265-version.h'
sed -i.bak 's/<libde265\\/de265-version.h>/"de265-version.h"/g' './libde265/de265.h'
CMD
s.xcconfig = {
Expand Down

0 comments on commit 5e73e98

Please sign in to comment.