Skip to content

Commit d364be5

Browse files
committed
Prepare 1.7.0 release
1 parent 4aaeb72 commit d364be5

14 files changed

+90
-15
lines changed

CHANGELOG.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,81 @@
11
Changelog
22
=========
33

4+
1.7.0
5+
-----
6+
7+
## Features
8+
* Adding dateCells option (#1723)
9+
* Added keepEmptyValues option (#1558 + #1901)
10+
* added "changeViewMode" event; also adds the current `viewMode` to events (#1953)
11+
* adds `updateViewDate` option (#1982)
12+
* Added hiding week day names functionality (#2087)
13+
* Allow customizing day cell value (#2043)
14+
15+
## Bugfixes
16+
* originalEvent object needs preventDefault fn (#1824)
17+
* Fix jQuery selector from premature selection of span element in inline/embedded calendar's month selection (#1859 + #1886)
18+
* Use date arithmetic to allow dates with times other than 00:00:00 (#1483)
19+
* Multiple general fixes (#1883 + #1893)
20+
* Visibility fix for nav arrows (#1916)
21+
* Do not trigger change or changeDate on initialization (#1912)
22+
* Fix: Close datepicker on touchstart (#1924)
23+
* Fix data-date-dates-disabled attribute to accept a comma-separated list (#1946)
24+
* Fix maxViewMode and navigation switch click (#1951)
25+
* Add support jQuery 3. Bootstrap 2 still available (composer.json) (#1958)
26+
* fix(parseDate) use insensitive regex to support +15d with capslock (#1910)
27+
* Refactoring timedelta aliases (dateAliases) (#1965)
28+
* Fix RTL layout (#1973)
29+
* Remove listen `changeDate` after destroy DateRangePicker (#1968)
30+
* add tests for setDatesDisabled function (#1983)
31+
* resolves bug on days when DST is added. (#2009)
32+
* XHTML fixes (#1998)
33+
* update grunt and other dev-dependencies (#2111)
34+
* Use display:table-cell instead of display:block for today, clear and title (#2121)
35+
* moved assumeNearbyYear to correct location (#2140)
36+
* move `jquery` to `peerDependencies` from `dependencies` (#2163)
37+
* Use default arrow values (#2176)
38+
39+
## Locales
40+
### New
41+
* en-ZA (#1798)
42+
* en-ZNZ (#1799)
43+
* en-IE (#1800)
44+
* ar-tn (#1863)
45+
* Added Sinhala (si) locale (#2025)
46+
* Occitan locale (#2024 + #2026)
47+
* [l10n]Add breton translation (#2028)
48+
* Added Tajik language (#2117)
49+
* Add Uzbek latin and cyrill locales (#2152)
50+
* add Bengali (Bangla) language (#2171)
51+
* Added Hindi locale (#2199)
52+
53+
### Bugfix
54+
* km/kh (#1812)
55+
* Capital letters in Polish translation (#1890)
56+
* Add missing monthsTitle in cs (#1900)
57+
* Update bootstrap-datepicker.da.js (#1936)
58+
* Fix typo in month name (#2040)
59+
* Added missing basque language properties (#2066)
60+
* Added weekStart to slovenian translation (#2067)
61+
* add monthsTitle for ru (#2092)
62+
* Change danish (da) date format to match the rest of the locales (#2048)
63+
* Fix Tamil Language file with proper locale code (#2141)
64+
* Revert strange changes, +monthsTitle (#2153)
65+
* updated Tajik (cyrillic) translation file (#2167)
66+
* Romanian uses dd/mm/yyyy format for dates (#2173)
67+
* Missing latvian translation (#2204)
68+
69+
## Docs
70+
* Fix typo in index.rst (#1882)
71+
* Update CDNjs info in README.md (#1933)
72+
* [Doc] Keyboard navigation is not supported for embedded / inline type (#2002)
73+
* Removed reference to stefan petre (#2031)
74+
* Improve defaultViewDate documentation (#2052)
75+
* Add notes about multiple dates and examples for update method (#2060)
76+
* Add Code Of Conduct (#2095)
77+
* Update install instructions on README.md (#2160)
78+
479
1.6.2 - 1.6.3 - 1.6.4
580
---------------------
681

dist/css/bootstrap-datepicker.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/bootstrap-datepicker.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/bootstrap-datepicker.standalone.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/bootstrap-datepicker.standalone.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/bootstrap-datepicker3.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/bootstrap-datepicker3.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/bootstrap-datepicker3.standalone.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/bootstrap-datepicker3.standalone.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/bootstrap-datepicker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Datepicker for Bootstrap v1.7.0-RC3 (https://github.com/uxsolutions/bootstrap-datepicker)
2+
* Datepicker for Bootstrap v1.7.0 (https://github.com/uxsolutions/bootstrap-datepicker)
33
*
44
* Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
55
*/
@@ -1998,7 +1998,7 @@
19981998

19991999
/* DATEPICKER VERSION
20002000
* =================== */
2001-
$.fn.datepicker.version = '1.7.0-RC3';
2001+
$.fn.datepicker.version = '1.7.0';
20022002

20032003
$.fn.datepicker.deprecated = function(msg){
20042004
var console = window.console;

dist/js/bootstrap-datepicker.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locales/bootstrap-datepicker.lv.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/bootstrap-datepicker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2011,7 +2011,7 @@
20112011

20122012
/* DATEPICKER VERSION
20132013
* =================== */
2014-
$.fn.datepicker.version = '1.7.0-RC3';
2014+
$.fn.datepicker.version = '1.7.0';
20152015

20162016
$.fn.datepicker.deprecated = function(msg){
20172017
var console = window.console;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bootstrap-datepicker",
33
"description": "A datepicker for Bootstrap",
4-
"version": "1.7.0-RC3",
4+
"version": "1.7.0",
55
"license": "Apache-2.0",
66
"keywords": [
77
"datepicker",

0 commit comments

Comments
 (0)