Skip to content

Commit

Permalink
chore(release): prepare release 1.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bigopon committed Apr 19, 2022
1 parent 8a234b5 commit 37b09e4
Show file tree
Hide file tree
Showing 20 changed files with 62 additions and 53 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-resources",
"version": "1.14.1",
"version": "1.14.2",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
Expand Down Expand Up @@ -29,4 +29,4 @@
"aurelia-task-queue": "^1.0.0",
"aurelia-templating": "^1.8.1"
}
}
}
8 changes: 5 additions & 3 deletions dist/amd/aurelia-templating-resources.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions dist/commonjs/aurelia-templating-resources.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/es2015/aurelia-templating-resources.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/es2015/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/es2017/aurelia-templating-resources.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/es2017/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions dist/native-modules/aurelia-templating-resources.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/native-modules/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions dist/system/aurelia-templating-resources.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/system/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

31 changes: 14 additions & 17 deletions dist/types/aurelia-templating-resources.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by dts-bundle-generator v6.5.0
// Generated by dts-bundle-generator v6.7.0

import { OverrideContext, bindingMode } from 'aurelia-binding';
import { View, ViewFactory, ViewSlot } from 'aurelia-templating';
Expand Down Expand Up @@ -164,36 +164,36 @@ export declare class AbstractRepeater {
/**
* Returns the number of views the repeater knows about.
*
* @return {Number} the number of views.
* @return the number of views.
*/
viewCount(): number;
/**
* Returns all of the repeaters views as an array.
*
* @return {Array} The repeater's array of views;
* @return The repeater's array of views;
*/
views(): any[];
/**
* Returns a single view from the repeater at the provided index.
*
* @param {Number} index The index of the requested view.
* @param index The index of the requested view.
* @return {View|ViewSlot} The requested view.
*/
view(index: any): any;
view(index: number): any;
/**
* Returns the matcher function to be used by the repeater, or null if strict matching is to be performed.
*
* @return {Function|null} The requested matcher function.
* @return The requested matcher function.
*/
matcher(): void;
matcher(): Function | null;
/**
* Adds a view to the repeater, binding the view to the
* provided contexts.
*
* @param {Object} bindingContext The binding context to bind the new view to.
* @param {Object} overrideContext A secondary binding context that can override the primary context.
*/
addView(bindingContext: any, overrideContext: any): void;
addView(bindingContext: any, overrideContext: any): any;
/**
* Inserts a view to the repeater at a specific index, binding the view to the
* provided contexts.
Expand All @@ -202,39 +202,37 @@ export declare class AbstractRepeater {
* @param {Object} bindingContext The binding context to bind the new view to.
* @param {Object} overrideContext A secondary binding context that can override the primary context.
*/
insertView(index: any, bindingContext: any, overrideContext: any): void;
insertView(index: any, bindingContext: any, overrideContext: any): any;
/**
* Moves a view across the repeater.
*
* @param {Number} sourceIndex The index of the view to be moved.
* @param {Number} sourceIndex The index where the view should be placed at.
*/
moveView(sourceIndex: any, targetIndex: any): void;
moveView(sourceIndex: any, targetIndex: any): any;
/**
* Removes all views from the repeater.
* @param {Boolean} returnToCache Should the view be returned to the view cache?
* @param {Boolean} skipAnimation Should the removal animation be skipped?
* @return {Promise|null}
*/
removeAllViews(returnToCache?: boolean, skipAnimation?: boolean): void;
removeAllViews(returnToCache?: boolean, skipAnimation?: boolean): (any | Promise<any>)[];
/**
* Removes an array of Views from the repeater.
*
* @param {Array} viewsToRemove The array of views to be removed.
* @param {Boolean} returnToCache Should the view be returned to the view cache?
* @param {Boolean} skipAnimation Should the removal animation be skipped?
* @return {Promise|null}
*/
removeViews(viewsToRemove: Array<View>, returnToCache?: boolean, skipAnimation?: boolean): void;
removeViews(viewsToRemove: Array<View>, returnToCache?: boolean, skipAnimation?: boolean): (any | Promise<any>)[];
/**
* Removes a view from the repeater at a specific index.
*
* @param {Number} index The index of the view to be removed.
* @param {Boolean} returnToCache Should the view be returned to the view cache?
* @param {Boolean} skipAnimation Should the removal animation be skipped?
* @return {Promise|null}
*/
removeView(index: number, returnToCache?: boolean, skipAnimation?: boolean): void;
removeView(index: number, returnToCache?: boolean, skipAnimation?: boolean): any | Promise<any>;
/**
* Forces a particular view to update it's bindings, called as part of
* an in-place processing of items for better performance
Expand Down Expand Up @@ -435,9 +433,8 @@ export declare class Focus {
constructor(element: any, taskQueue: any);
/**
* Invoked everytime the bound value changes.
* @param newValue The new value.
*/
valueChanged(newValue: any): void;
valueChanged(): void;
/**
* Invoked when the attribute is attached to the DOM.
*/
Expand Down
11 changes: 11 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.14.2](https://github.com/aurelia/templating-resources/compare/1.14.1...1.14.2) (2022-04-19)


### Bug Fixes

* **typings:** ensure abstract repeater typings compat ([#418](https://github.com/aurelia/templating-resources/issues/418)) ([8a234b5](https://github.com/aurelia/templating-resources/commit/8a234b51252c5f8c44a649dd3bce02ab86bf0846))

## [1.14.1](https://github.com/aurelia/templating-resources/compare/1.14.0...1.14.1) (2022-04-01)


Expand Down
2 changes: 1 addition & 1 deletion doc/MAINTAINER.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# with minor
npm run cut-release minor
```
3. Commit: `git add .` and then `git commit chore(release): prepare release vXXX` where `XXX` is the new version
3. Commit: `git add .` and then `git commit chore(release): prepare release XXX` where `XXX` is the new version
4. Tag: `git tag -a XXX` where `XXX` is the version
5. Push to remote repo: `git push --follow-tags`
6. Publish: Run `npm publish` to release the new version
2 changes: 1 addition & 1 deletion doc/api.json

Large diffs are not rendered by default.

7 changes: 0 additions & 7 deletions doc/bower-version.js

This file was deleted.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-resources",
"version": "1.14.1",
"version": "1.14.2",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 37b09e4

Please sign in to comment.