Skip to content

Commit

Permalink
release(1.0.1): new release including the fix for week number
Browse files Browse the repository at this point in the history
  • Loading branch information
AhsanAyaz committed Mar 18, 2024
1 parent 8e0ca5c commit 13c4e25
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [1.0.1](https://github.com/IOMechs/angular-year-calendar/compare/v1.0.0...v1.0.1) (2024-03-18)


### Bug Fixes

* **ci:** use NodeJS v16.13 ([e8e326a](https://github.com/IOMechs/angular-year-calendar/commit/e8e326a04b6637dbd284ac3174c8ead9c124cd09))
* **week-number-calculation:** if year start day same as selected start day ([8e0ca5c](https://github.com/IOMechs/angular-year-calendar/commit/8e0ca5c2edc9abf8a500d487e4e877681a55001b))



# [1.0.0](https://github.com/IOMechs/angular-year-calendar/compare/0.1.8...1.0.0) (2022-12-07)


Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
<div class="content getting-started">
<div class="content-data">

<h1 id="100-2022-12-07"><a href="https://github.com/IOMechs/angular-year-calendar/compare/0.1.8...1.0.0">1.0.0</a> (2022-12-07)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>v15:</strong> fix v15 migration issues (<a href="https://github.com/IOMechs/angular-year-calendar/commit/aef5bdd2effb5b8e7bded5315f4860c4f077b106">aef5bdd</a>)</li>
</ul>
<h2 id="018-2020-04-24"><a href="https://github.com/IOMechs/angular-year-calendar/compare/0.1.7...0.1.8">0.1.8</a> (2020-04-24)</h2>


Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ <h2 id="usage">Usage</h2>
[ycConfig]=&quot;myCalendarConfig&quot;
[selectedDate]=&quot;currentDate&quot;&gt;
&lt;/yc-year-calendar&gt;</code></pre></div><h2 id="license">License</h2>
<p>MIT © <a href="https://github.com/IOmechs">IOMechs</a></p>
<p>MIT © <a href="https://iomechs.com">IOMechs</a></p>



Expand Down
4 changes: 2 additions & 2 deletions docs/js/search/search_index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/pipes/WeekNumberPipe.html
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ <h3 id="methods">

// find out the distance from the first week&#x27;s first day
const roundFigure &#x3D; ((currentWeekStartDate.getTime() - firstWeekFirstDate.getTime()) / 86400000);
result &#x3D; (roundFigure % 7 &#x3D;&#x3D;&#x3D; 0) ? roundFigure / 7 : 1 + Math.round(roundFigure / 7);
result &#x3D; (roundFigure % 7 &#x3D;&#x3D;&#x3D; 0) ? roundFigure / 7 + 1 : 1 + Math.round(roundFigure / 7);
if (result &lt;&#x3D; 0) {
result &#x3D; weeksInYear + result;
}
Expand Down
2 changes: 1 addition & 1 deletion projects/angular-year-calendar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ Then in your HTML, you can use as:

## License

MIT © [IOMechs](https://github.com/IOmechs)
MIT © [IOMechs](https://iomechs.com)
2 changes: 1 addition & 1 deletion projects/angular-year-calendar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iomechs/angular-year-calendar",
"version": "1.0.0",
"version": "1.0.1",
"dependencies": {
"tslib": "^2.0.0"
},
Expand Down

0 comments on commit 13c4e25

Please sign in to comment.