Skip to content

Commit

Permalink
make batchUpdatesInProgress a public property
Browse files Browse the repository at this point in the history
  • Loading branch information
DenTelezhkin committed Mar 11, 2016
1 parent 9313ac1 commit e90f981
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file.

## [2.4.4](https://github.com/DenHeadless/DTModelStorage/releases/tag/2.4.4)

### Changed

* `batchUpdatesInProgress` property on `BaseStorage` is made public to be available in subclasses

## [2.4.3](https://github.com/DenHeadless/DTModelStorage/releases/tag/2.4.3)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion DTModelStorage.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DTModelStorage'
s.version = '2.4.3'
s.version = '2.4.4'
s.license = 'MIT'
s.summary = 'Storage classes for datasource based controls.'
s.homepage = 'https://github.com/DenHeadless/DTModelStorage'
Expand Down
2 changes: 1 addition & 1 deletion DTModelStorage/Sources/Core/BaseStorage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class BaseStorage : NSObject, HeaderFooterStorageProtocol
public var currentUpdate: StorageUpdate?

/// Batch updates are in progress. If true, update will not be finished.
private var batchUpdatesInProgress = false
public var batchUpdatesInProgress = false

/// Delegate for storage updates
public weak var delegate : StorageUpdating?
Expand Down

0 comments on commit e90f981

Please sign in to comment.