From c7c4f75e38fc51b354b82dbcb3580c5642ba05b5 Mon Sep 17 00:00:00 2001 From: Badarinath Venkatnarayansetty Date: Fri, 13 Feb 2026 10:05:23 -0800 Subject: [PATCH 1/4] Update README with Xcode UI steps for SPM installation --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0ef1113..b94b7d8 100644 --- a/README.md +++ b/README.md @@ -79,11 +79,17 @@ github "badrinathvm/stepperView" == 1.6.7 ## Swift Package Manager -StepperView is available through [Swift Package Manager](https://swift.org/package-manager/). To install it, simply add it to the `dependencies` of your `Package.swift` +StepperView is available through [Swift Package Manager](https://swift.org/package-manager/). -```ruby +**In Xcode:** +1. Go to `File` > `Add Package Dependencies...` +2. Enter the repository URL: `https://github.com/badrinathvm/StepperView.git` +3. Select version `1.6.7` or later + +**In `Package.swift`:** +```swift dependencies: [ - .package(url: "https://github.com/badrinathvm/StepperView.git", from: "1.6.7") + .package(url: "https://github.com/badrinathvm/StepperView.git", from: "1.6.7") ] ``` From d8d6040de77d7c43bbb013dfbd4ca9349309ea66 Mon Sep 17 00:00:00 2001 From: Badarinath Venkatnarayansetty Date: Fri, 13 Feb 2026 12:02:38 -0800 Subject: [PATCH 2/4] Fix typos in Enforcement section of CODE_OF_CONDUCT.md --- CODE_OF_CONDUCT.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 1989e4e..93fe270 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -55,8 +55,7 @@ further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at badrinathvm@gmail.com. All -complaints will be reviewed and investigated and will result in a response that +reported by raising a GitHub issue. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. From 3c0123ab701fb1ca0d043792f43f542f9978402f Mon Sep 17 00:00:00 2001 From: Badarinath Venkatnarayansetty Date: Mon, 16 Feb 2026 22:25:16 -0800 Subject: [PATCH 3/4] Updated copyright information in Licence --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 0f8e245..e508f89 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2020 Badarinath Venkatnarayansetty +Copyright (c) 2020-2026 Badarinath Venkatnarayansetty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From fe155ebafede89244d79e23e3e22dd9225cac9af Mon Sep 17 00:00:00 2001 From: Badarinath Venkatnarayansetty Date: Mon, 16 Feb 2026 22:30:36 -0800 Subject: [PATCH 4/4] Removed travis.yml file as it is handled by github workflows --- .travis.yml | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a9e89c3..0000000 --- a/.travis.yml +++ /dev/null @@ -1,12 +0,0 @@ -language: swift -xcode_workspace: Example/StepperView.xcworkspace -xcode_scheme: StepperView-Example -osx_image: xcode11.3 -podfile: Example/Podfile -before_install: - - gem install cocoapods - - gem install jazzy - - pod repo update -script: xcodebuild test -workspace Example/StepperView.xcworkspace -scheme StepperView-Example -destination "platform=iOS Simulator,OS=13.3,name=iPhone 11" ONLY_ACTIVE_ARCH=NO -quiet - -