zotero-rb 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4726b345f1c3ad888f6ea08fd69fefc997527aa509972db1f0aa3c38ed6e58c6
4
- data.tar.gz: a4b6623d56034130a91b8067c1927120d60731aae6d71d7855c253df2bd57aa0
3
+ metadata.gz: 4766ba9e6a279552e06f893d7a30c0689ada6c8166dbf59a1a8eaeaf56189887
4
+ data.tar.gz: 4f37812a884e8079d1ff2643a0e21a40f05f487e9261bc5fb902959a16c39d6c
5
5
  SHA512:
6
- metadata.gz: fc34f7ac321a12c9cda48ca5615cbabd617f8981dea664a87aa9243e5e7d677b0b6acde40108bd2813f44e34048cafb668afaa4385dfe8ecdd27eb171782b583
7
- data.tar.gz: 611cd7bc28d93c0c4365aea57e833d687d65571d147a6d14197b8cab0194defdb9f29383958aa3ff87ebbc985050d82a02c35f6111c74ed83180bb52a38f2097
6
+ metadata.gz: d03e2f9b7eb2323eca3a6e896a22d295b80e999037c7a345c5e10bc60cc10fe79218b6f801b71ad89dffb657aa63f023047e7518cd5cc2c7105ddfbc763b32fa
7
+ data.tar.gz: 25b58f33822bcae33b0f65a6090e744fc0f1f8198bc16ba23b87cfcc2703c679b7dc9f76d9139e1a257661265dc2bf907052130efdff1158975e15322621d0fd
data/.env.example ADDED
@@ -0,0 +1,6 @@
1
+ # Zotero API credentials for testing
2
+ # Copy this file to .env and add your actual credentials
3
+
4
+ # Get these from: https://www.zotero.org/settings/keys
5
+ ZOTERO_API_KEY=your-api-key-here
6
+ ZOTERO_USER_ID=your-user-id-here
data/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.1.2](https://github.com/andrewhwaller/zotero-rb/compare/v0.1.1...v0.1.2) (2025-09-04)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * ensure Release Please only runs after CI passes ([eaf2493](https://github.com/andrewhwaller/zotero-rb/commit/eaf2493faf9f937b4b05af4afb5c09bbae41d3f7))
14
+ * remove HTTParty format :json and update dependencies ([894f090](https://github.com/andrewhwaller/zotero-rb/commit/894f090251a5a9add33cfc5cba8c39868e338070))
15
+
8
16
  ## [Unreleased]
9
17
 
10
18
  ## [0.1.0](https://github.com/andrewhwaller/zotero-rb/compare/v0.0.0...v0.1.0) (2025-09-04)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Zotero
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zotero-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Waller
@@ -10,33 +10,33 @@ cert_chain: []
10
10
  date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
- name: httparty
13
+ name: csv
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - "~>"
16
+ - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: 0.21.0
18
+ version: '0'
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
- - - "~>"
23
+ - - ">="
24
24
  - !ruby/object:Gem::Version
25
- version: 0.21.0
25
+ version: '0'
26
26
  - !ruby/object:Gem::Dependency
27
- name: csv
27
+ name: httparty
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
- - - ">="
30
+ - - "~>"
31
31
  - !ruby/object:Gem::Version
32
- version: '0'
32
+ version: 0.21.0
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - ">="
37
+ - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '0'
39
+ version: 0.21.0
40
40
  description: A feature-complete Ruby client for the Zotero Web API v3, providing full
41
41
  CRUD operations for items, collections, tags, and searches, plus file uploads, fulltext
42
42
  content access, and library synchronization. Built with a modular architecture and
@@ -47,6 +47,7 @@ executables: []
47
47
  extensions: []
48
48
  extra_rdoc_files: []
49
49
  files:
50
+ - ".env.example"
50
51
  - ".rspec"
51
52
  - ".rubocop.yml"
52
53
  - ".yardopts"