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

Commit 4531b82

Browse files
committed
Merge pull request #9 from ParsePlatform/nlutsenko.101
ParseLiveQuery 1.0.1
2 parents a2471e2 + 6b38045 commit 4531b82

File tree

6 files changed

+35
-24
lines changed

6 files changed

+35
-24
lines changed

Examples/LiveQueryDemo/Message.swift

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
//
2-
// Message.swift
3-
// ParseLiveQuery
4-
//
5-
// Created by Richard Ross III on 10/27/15.
6-
// Copyright © 2015 parse. All rights reserved.
7-
//
1+
/**
2+
* Copyright (c) 2016-present, Parse, LLC.
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the BSD-style license found in the
6+
* LICENSE file in the root directory of this source tree. An additional grant
7+
* of patent rights can be found in the PATENTS file in the same directory.
8+
*/
89

910
import Foundation
1011
import Parse

Examples/LiveQueryDemo/Room.swift

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
//
2-
// Room.swift
3-
// ParseLiveQuery
4-
//
5-
// Created by Richard Ross III on 10/27/15.
6-
// Copyright © 2015 parse. All rights reserved.
7-
//
1+
/**
2+
* Copyright (c) 2016-present, Parse, LLC.
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the BSD-style license found in the
6+
* LICENSE file in the root directory of this source tree. An additional grant
7+
* of patent rights can be found in the PATENTS file in the same directory.
8+
*/
89

910
import Foundation
1011
import Parse

Examples/LiveQueryDemo/main.swift

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
//
2-
// main.swift
3-
// ParseLiveQuery
4-
//
5-
// Created by Richard Ross III on 10/22/15.
6-
// Copyright © 2015 parse. All rights reserved.
7-
//
1+
/**
2+
* Copyright (c) 2016-present, Parse, LLC.
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the BSD-style license found in the
6+
* LICENSE file in the root directory of this source tree. An additional grant
7+
* of patent rights can be found in the PATENTS file in the same directory.
8+
*/
89

910
import Foundation
1011
import Parse

ParseLiveQuery.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ParseLiveQuery'
3-
s.version = '1.0.0'
3+
s.version = '1.0.1'
44
s.license = { :type => 'BSD' }
55
s.summary = 'Allows for subscriptions to queries in conjunction with parse-server.'
66
s.homepage = 'https://github.com/ParsePlatform/parse-server'

Sources/ParseLiveQuery.xcodeproj/project.pbxproj

+9-1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,14 @@
101101
name = Pods;
102102
sourceTree = "<group>";
103103
};
104+
81464FC51CA31DA0000235E7 /* Resources */ = {
105+
isa = PBXGroup;
106+
children = (
107+
F5256FD31BD71F9A0052FB8A /* Info.plist */,
108+
);
109+
name = Resources;
110+
sourceTree = "<group>";
111+
};
104112
F5256FC41BD71F9A0052FB8A = {
105113
isa = PBXGroup;
106114
children = (
@@ -125,8 +133,8 @@
125133
F5256FD01BD71F9A0052FB8A /* ParseLiveQuery */ = {
126134
isa = PBXGroup;
127135
children = (
128-
F5256FD31BD71F9A0052FB8A /* Info.plist */,
129136
F5DC9D381BD9BAFC00E8FF07 /* Internal */,
137+
81464FC51CA31DA0000235E7 /* Resources */,
130138
F5591BA31BD720E10072F966 /* Client.swift */,
131139
F534A5B11BDAFE0200CBD11A /* Subscription.swift */,
132140
F54D58B51C8E33D9009F8D6C /* ObjCCompat.swift */,

Sources/ParseLiveQuery/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>1.0.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)