Skip to content
This repository was archived by the owner on Jun 4, 2025. It is now read-only.

Commit 1674c2f

Browse files
authored
Merge pull request #327 from wordpress-mobile/fix-cocoapods-generate-duplicate-uuid
Fix cocoapods generate duplicate UUID
2 parents b08c801 + b25c94f commit 1674c2f

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

WordPressShared.podspec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# frozen_string_literal: true
22

3+
require 'rake'
4+
35
# rubocop:disable Metrics/BlockLength
46

57
Pod::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 = {

0 commit comments

Comments
 (0)