ruby-ldap3 0.10.3 → 0.10.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/NOTES +4 -0
  3. data/rbldap.h +4 -4
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d51cc329d450ec3fca95b42e37242982346fd6cd0992588fa6ffb8474137728
4
- data.tar.gz: 16d22bdc15149ec2348b55b9b61cf657df1ad16458f2f49a47b4336e3928e458
3
+ metadata.gz: dfab3dd68d24407fe192ef81c6ebe0124a3792500f9bb39e8dcf7ff000d2af01
4
+ data.tar.gz: 50d447f19070a4f534e4ddbb91f51937d162b69b5c07f81583f14ef8e320f6be
5
5
  SHA512:
6
- metadata.gz: 4b11f66d6df5076477a42de5d7d6855451bb1782c9134f2d55e798b72b0760b46121f30c37807831949e9981f26892e9c75f0d6fdb209eea83366d6d994f0ebe
7
- data.tar.gz: ce21556be3e22b4a3f5c1a4725ecf87ec4d836abd2c873d80f7eb40f1fb926a2b8629007cfbccdfd5a87685945ba4016ba35b82db75b8dc94164ebadaaa6a2c0
6
+ metadata.gz: d371b29d079658c2992a5cb32d4fafc3951f263955e57bad42c71af7db010e022c774fa1056418663cba01b73dde50a522905eaf4fda990205c19f6b13de63fe
7
+ data.tar.gz: 87fe1c675c09658e737c631ea25c408b77e6736cf85232fcafea8e43f87a837c5fec7734bda0867ce7735c5692bdc68a972db17450aa109311ed02dc08de9835
data/NOTES CHANGED
@@ -1,3 +1,7 @@
1
+ 0.10.4
2
+ ------
3
+ * Fix up RB_LDAP_MINOR_VERSION and RB_LDAP_PATCH_VERSION to agree with RB_LDAP_VERSION
4
+
1
5
  0.10.3
2
6
  -----
3
7
  * Cast (rb_block_call_func_t) per https://github.com/bearded/ruby-ldap/issues/47#issuecomment-1645066553
data/rbldap.h CHANGED
@@ -25,10 +25,10 @@
25
25
  # define LDAP_OPT_ERROR (-1)
26
26
  #endif
27
27
 
28
- #define RB_LDAP_MAJOR_VERSION 0
29
- #define RB_LDAP_MINOR_VERSION 9
30
- #define RB_LDAP_PATCH_VERSION 20
31
- #define RB_LDAP_VERSION "0.10.3"
28
+ #define RB_LDAP_MAJOR_VERSION 0 /* Must agree with RB_LDAP_VERSION below */
29
+ #define RB_LDAP_MINOR_VERSION 10 /* Must agree with RB_LDAP_VERSION below */
30
+ #define RB_LDAP_PATCH_VERSION 4 /* Must agree with RB_LDAP_VERSION below */
31
+ #define RB_LDAP_VERSION "0.10.4" /* This must agree with the numeric version parts above */
32
32
 
33
33
  #define LDAP_GET_OPT_MAX_BUFFER_SIZE (1024) /* >= sizeof(LDAPAPIInfo) */
34
34
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-ldap3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.3
4
+ version: 0.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shane Curcuru