diff --git a/Data/UpdateInfo.xml b/Data/UpdateInfo.xml
index fa7a71fb..e95de7d2 100644
--- a/Data/UpdateInfo.xml
+++ b/Data/UpdateInfo.xml
@@ -32,6 +32,9 @@
- Version 3.4.0 update
- The spellbook has been updated with the following new features:<br/><br/>• The ability to filter spells by royalty has been added.<br/><br/>• The count for each spell list is now shown next to the list name in both the side menu and the bottom navigation bar.<br/><br/>Additionally, this update fixes some typos and mistakes in the text for a few spells.
-
+
+
+ - Version 3.5.0 update
+ - The spellbook has been updated with the following new features:<br/><br/>• Content from <b>The Book of Many Things</b> has been added</b>.<br/><br/>• The higher level text for <b>Erupting Earth</b> has been corrected</b>.<br/><br/>• The spellcasting information has been updated with a description of the royalty component.
diff --git a/Spellbook.xcodeproj/project.pbxproj b/Spellbook.xcodeproj/project.pbxproj
index 72b6c29d..10aeda01 100644
--- a/Spellbook.xcodeproj/project.pbxproj
+++ b/Spellbook.xcodeproj/project.pbxproj
@@ -1009,7 +1009,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
"CODE_SIGN_STYLE[sdk=iphoneos*]" = Automatic;
- CURRENT_PROJECT_VERSION = 46;
+ CURRENT_PROJECT_VERSION = 49;
DEFINES_MODULE = NO;
DEVELOPMENT_TEAM = RSR87G74R7;
EXCLUDED_ARCHS = "";
@@ -1019,7 +1019,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
- MARKETING_VERSION = 3.4.0;
+ MARKETING_VERSION = 3.5.0;
PRODUCT_BUNDLE_IDENTIFIER = dnd.jon.Spellbook;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -1038,7 +1038,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
"CODE_SIGN_STYLE[sdk=iphoneos*]" = Automatic;
- CURRENT_PROJECT_VERSION = 46;
+ CURRENT_PROJECT_VERSION = 49;
DEFINES_MODULE = NO;
DEVELOPMENT_TEAM = RSR87G74R7;
EXCLUDED_ARCHS = "";
@@ -1048,7 +1048,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
- MARKETING_VERSION = 3.4.0;
+ MARKETING_VERSION = 3.5.0;
PRODUCT_BUNDLE_IDENTIFIER = dnd.jon.Spellbook;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
diff --git a/Spellbook.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Spellbook.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
deleted file mode 100644
index b76b964b..00000000
--- a/Spellbook.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
+++ /dev/null
@@ -1,49 +0,0 @@
-{
- "pins" : [
- {
- "identity" : "actionsheetpicker-3.0",
- "kind" : "remoteSourceControl",
- "location" : "https://github.com/skywinder/ActionSheetPicker-3.0",
- "state" : {
- "revision" : "8d82c21036c2f478a47908a7fc107ec7027abcab"
- }
- },
- {
- "identity" : "reswift",
- "kind" : "remoteSourceControl",
- "location" : "https://github.com/ReSwift/ReSwift.git",
- "state" : {
- "revision" : "26d3095bdf55f093501bf3a749bb2718bab671b3",
- "version" : "6.0.0"
- }
- },
- {
- "identity" : "simplecheckbox",
- "kind" : "remoteSourceControl",
- "location" : "https://github.com/BeauNouvelle/SimpleCheckbox.git",
- "state" : {
- "revision" : "d7fa095107a5b27ed1bfe89005bc060417b0a9b2",
- "version" : "2.5.0"
- }
- },
- {
- "identity" : "swxmlhash",
- "kind" : "remoteSourceControl",
- "location" : "https://github.com/drmohundro/SWXMLHash.git",
- "state" : {
- "revision" : "4d0f62f561458cbe1f732171e625f03195151b60",
- "version" : "7.0.1"
- }
- },
- {
- "identity" : "toast-swift",
- "kind" : "remoteSourceControl",
- "location" : "https://github.com/scalessec/Toast-Swift",
- "state" : {
- "revision" : "0c9493eeacb102cc614da385cfaaf475379f4ab4",
- "version" : "5.0.1"
- }
- }
- ],
- "version" : 2
-}
diff --git a/Spellbook/VersionInfo.swift b/Spellbook/VersionInfo.swift
index 2ec675ec..569dda0a 100644
--- a/Spellbook/VersionInfo.swift
+++ b/Spellbook/VersionInfo.swift
@@ -11,8 +11,8 @@ import SWXMLHash
class VersionInfo {
- static let version = Version(major: 3, minor: 4, patch: 0)
- static let previousVersion = Version(major: 3, minor: 3, patch: 0)
+ static let version = Version(major: 3, minor: 5, patch: 0)
+ static let previousVersion = Version(major: 3, minor: 4, patch: 0)
static let currentVersionKey = "v_" + version.string(separator: "_")