From dde917c95c3592001879c9f2cc89e7d9b5f9f62e Mon Sep 17 00:00:00 2001 From: Ezequiel Santos Date: Thu, 18 Jul 2024 19:10:21 +0100 Subject: [PATCH 1/5] Delete .DS_Store --- .DS_Store | Bin 10244 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 08fe2399c0b01237b2233610f9438c428485d35c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10244 zcmeHMOODe(5PdxiBK)M;BOxzXuu7O4WQIftG>p&$Sd))QBAjuE6A-MtX2%U!atSs_ zd?XIR0k{Edc>OWhZcms6L|Cepx}Vck<*s`DNvZ=t?XO0=Kmee@s&VHMn~I|4x_V{H z^;{(?+5=OJaf}!Xgr2r^2m``^Fdz&F1H!=nzyQCqb!l9*D6KFc3 ztXzho%;>ZWj5<`?qO`(*FyJ$wbN35qGH;(^na|(n%fZ1aSuQ9)L=P{JP#$8279KLg zkFer%$lew@=u_6`(*u4Enf>eD5HDGuQg2F(I7UL9V`|3ED#SA*i7_WGXmiVWF`>=C ze2S?%rfo{eAj#)I`?G5AEoHCa00UJ+e z7I!*>C?06pr{q=R!?lll)q0~->CGp(F;&1<`D4~-EIdo~ZAjIo}>0dC_ax@MJi zYZR&Pc@}3$!YFrek86L3Cv3-D%}sMdmYDUd_rRz|ai1oZjEO($lAFsOH%Yd;YsAX> zC^A0QXpxEYIO0Co<9T|Q*yQ7eHM9z)a?Eq_rQv~VaQ#OjFMqAh~tP79t;Ih z@o2vD*4M}%%vWCj`108v%%%6t;@`*e$y$X&8E-25snOCbF+k6=NhwJf=2_g=6TvUm z!er#SixaW+t!R{=gm*_@-@8f3+2<#qTBAt5`8}VruMzP@uQSqfy?R|q5e9?-VL%uV z1~$yV89QE}@Bh0e|Np;XuVgr3Kp5C018Td|>+Ewxcen11t?$|c)<>+mXuZ^;F=1n_ z5Xdqblxd~Q2TEwYDY<9`PH{X57tnSCzdTBAi8Dsto+Wjod0XIW2$ Ulo6K_P|5%Q#r1fJWValD0t@Dq-T(jq From 9d81fbe4d2bb1dbb7a0d0994d0af740ff48cc90a Mon Sep 17 00:00:00 2001 From: Ezequiel Santos Date: Thu, 18 Jul 2024 19:11:00 +0100 Subject: [PATCH 2/5] Create swift.yml --- .github/workflows/swift.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/swift.yml diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml new file mode 100644 index 0000000..21ae770 --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,22 @@ +# This workflow will build a Swift project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift + +name: Swift + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v4 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v From 56885ce02e836b2906e8f7e2f979d1a9a83133d5 Mon Sep 17 00:00:00 2001 From: Ezequiel Santos Date: Thu, 18 Jul 2024 19:12:54 +0100 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 021c0e4..12301c0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # GoogleScholarSwift -[![Build Status](https://github.com/ezefranca/GoogleScholarFetcher/actions/workflows/workflow.yml/badge.svg)](https://github.com/ezefranca/GoogleScholarFetcher/actions/workflows/workflow.yml) +[![Swift](https://github.com/ezefranca/GoogleScholarSwift/actions/workflows/swift.yml/badge.svg)](https://github.com/ezefranca/GoogleScholarSwift/actions/workflows/swift.yml) The `GoogleScholarSwift` package provides an easy-to-use interface for fetching publication data from Google Scholar. It allows users to retrieve detailed information about an author's publications, including titles, publication years, links, and citation counts. This package is designed for academics, researchers, and anyone interested in programmatically analyzing scholarly publication data. From a61e314461727fcd1a7d3f109fb145ca09ec8840 Mon Sep 17 00:00:00 2001 From: Ezequiel Santos Date: Wed, 24 Jul 2024 18:39:08 +0100 Subject: [PATCH 4/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 12301c0..fd760ee 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ swift run GoogleScholarSwiftCLI --sortby You can also use `GoogleScholarFetcher` directly in your Swift code. Here's how: ```swift -import GoogleScholarFetcher +import GoogleScholarSwift let fetcher = GoogleScholarFetcher() @@ -86,7 +86,7 @@ fetcher.fetchAllPublications(authorID: "", sortBy: "") ## Contributing -We welcome contributions to `GoogleScholarFetcher`! If you have suggestions for improvements, please open an issue or a pull request. +We welcome contributions to `GoogleScholarSwift`! If you have suggestions for improvements, please open an issue or a pull request. ## Similar projects From 4838d980f2af4e3498b0d7dfe2f42d5e1b7d3260 Mon Sep 17 00:00:00 2001 From: Ezequiel Santos Date: Wed, 24 Jul 2024 18:47:05 +0100 Subject: [PATCH 5/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fd760ee..d887988 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ To integrate `GoogleScholarSwift` into your Xcode project using Swift Package Ma ```swift dependencies: [ - .package(url: "https://github.com/ezefranca/GoogleScholarFetcher.git", from: "1.0.0") + .package(url: "https://github.com/ezefranca/GoogleScholarSwift.git", from: "1.0.1") ] ```