This repository was archived by the owner on Jun 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,12 @@ _None._
4848
4949_ None._
5050
51+ ## [ 2.0.0-beta.2] ( https://github.com/wordpress-mobile/WordPress-iOS-Shared/releases/tag/2.0.0-beta.2 )
52+
53+ ### Bug Fixes
54+
55+ - Fix an issue where 'pod install' produces a 'duplicate UUID' warning. [ #327 ]
56+
5157## [ 2.0.0-beta.1] ( https://github.com/wordpress-mobile/WordPress-iOS-Shared/releases/tag/2.0.0-beta.1 )
5258
5359### Breaking Changes
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
3+ require 'rake'
4+
35# rubocop:disable Metrics/BlockLength
46
57Pod ::Spec . new do |s |
68 s . name = 'WordPressShared'
7- s . version = '2.0.0-beta.1 '
9+ s . version = '2.0.0-beta.2 '
810
911 s . summary = 'Shared components used in building the WordPress iOS apps and other library components.'
1012 s . description = <<-DESC
@@ -21,7 +23,8 @@ Pod::Spec.new do |s|
2123 s . swift_version = '5.0'
2224
2325 s . source = { git : 'https://github.com/wordpress-mobile/WordPress-iOS-Shared.git' , tag : s . version . to_s }
24- s . source_files = 'Sources/WordPressShared/**/*.swift' , 'Sources/WordPressSharedObjC/**/*.{h,m}'
26+ s . source_files = [ 'Sources/WordPressShared/**/*.swift' ] \
27+ + FileList [ 'Sources/WordPressSharedObjC/**/*.{h,m}' ] . exclude ( 'Sources/WordPressSharedObjC/include' )
2528 s . public_header_files = 'Sources/WordPressSharedObjC/include' , 'Sources/WordPressSharedObjC/WordPressShared.h'
2629 s . private_header_files = 'Sources/WordPressSharedObjC/Private/*.h'
2730 s . resource_bundles = {
You can’t perform that action at this time.
0 commit comments