Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
All notable changes to this project will be documented in this file.

## [Unreleased]
## [0.13.0][] (2025-07-21)
## [0.13.1][]

Fixes:

- Fixes #62 - make Document Sections attribute optional (@lannon)

## [0.13.0][]

New:

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
panda_doc (0.13.0)
panda_doc (0.13.1)
dry-configurable
dry-struct
faraday (>= 2.0.1, < 3.0)
Expand Down
8 changes: 4 additions & 4 deletions lib/panda_doc/objects/document_section.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ module PandaDoc
module Objects
class DocumentSection < Base
attribute :uuid, Types::String
attribute :document_uuid, Types::String
attribute :status, Types::Custom::DocumentStatus
attribute? :document_uuid, Types::String
attribute? :status, Types::Custom::DocumentStatus
attribute :name, Types::String

attribute :date_created, Types::Params::DateTime
attribute :date_modified, Types::Params::DateTime
attribute? :date_created, Types::Params::DateTime
attribute? :date_modified, Types::Params::DateTime

alias_method :created_at, :date_created
alias_method :updated_at, :date_modified
Expand Down
2 changes: 1 addition & 1 deletion lib/panda_doc/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module PandaDoc
VERSION = "0.13.0"
VERSION = "0.13.1"
end
Loading